3 線上使用者的資訊掃描和更新
在網頁中使用內建框架來呼叫掃描和更新程序,這行也能在網頁原始碼裡面看到!
4 資訊掃描與更新程式userflush.php
session_start();
mysql_connect("localhost"," ","");
mysql_select_db("php2000");
$delaytime=0;
// 找新的發言
$query = "select * from forumtalk where readsign= 0 and receiver='$name'";
$result = mysql_query($query);
if( mysql_num_rows($result) > 0)
{
// 讀取和顯示彈出視窗
$msg = mysql_fetch_array($result);
$numberfriend = $msg['id'];
echo "";
}
// 設定目前使用者的最新時間標誌,表示它線上
mysql_query("update userinfo set currentdate=".date("U")." where name='$name'");
// 設定刷新時間間隔為15秒
echo "";
?>