2016-09-08 68 views
-5

這是我Home.Php,我需要顯示實時通知,數據庫我如何能實現實時通知在我的PHP頁面

<html> 
<body> 
<label>Notifications <?php echo "(".$notification.")"; ?>)</label> 
//$notification Contain no. of Notifications From Database 
</body> 
</html> 
+0

AJAX和setInterval將讓你中途有。爲了接近真正的實時,你可能不得不看看websocket。 –

+0

哪個更安全? – Krishnan

+0

目前我正在使用@Node Js。在這裏我有另一個問題。我需要執行如下查詢: - select * from tb_users where user_id =「來自Php Session的值」。我需要從php Session獲取User_id來執行查詢。我該怎麼做 ? :( – Krishnan

回答

0

您需要使用web socket用於實時通知。您可以嘗試Ratchetsocket.io

+0

什麼是使用網絡套接字做它的第一步? – Krishnan

+0

@Krishnan學習如何使用網絡套接字 – Epodax

+0

謝謝老闆!!! – Krishnan

0

在這裏它的例子

Real time notifications with PHP

+0

目前我正在使用@Node Js。在這裏我有另一個問題。我需要執行一個查詢,如: - select * from tb_users where user_id =「value from Php Session」。我需要從php Session獲取User_id執行查詢,我該怎麼做?:( – Krishnan