聊天室php mysql 二

2021-04-17 08:05:37 字數 965 閱讀 5631

//第二頁面 name="frame2.php"

<?

include "../signup/mysql.php";

header("expires: sun, 28 dec 1997 09:32:45 gmt");

header("cache-control: no-cache, must-revalidate");

header("pragma: no-cache");

header("content-type: text/html; charset=$");

$current_time=time();

$delete_time=$current_time-40;

$sql="delete from chat_user where last_time<".$delete_time;

mysql_query($sql)or die(" false again");

$sql="update chat_user set last_time='$current_time' where userid='$userid'";

mysql_query($sql) or die("false");

$sql="select userid from chat_user";

$result=mysql_query($sql)or die("fallse");

$online=mysql_num_rows($result);

?>

<?            

$sql="select userid,id,*** from chat_user";

$result=mysql_query($sql)or die("fallse");

while($row=mysql_fetch_array($result))

?>

(<?echo $online ;?>人)

mysql 聊天室 聊天室php mysql 六

聊天室php mysql 六 相應的 資料庫 phpmyadmin mysql dump 主機 localhost 3306 資料庫 study28 資料表的結構 chat user create table chat user userid varchar 20 not null,passwd v...

聊天室php mysql 一

第乙個頁面 name index1.php include signup mysql.php time1 time userid 983530409 echo n if n 1 if n 983530409 php?userid scrolling auto php?userid php?useri...

用PHP MySQL搭建聊天室

mysql併發能力強 響應速度快,是效能優異的資料庫軟體 php是功能強大的伺服器端指令碼語言。筆者在山西鋁廠 開發中,採用 php4.0 mysql3.23.38建立了多種應用。下面,以乙個簡單的聊天室設計為例,介紹php mysql在網頁開發中的應用。1 總體設計 1.1 構思與規劃 聊天室的基...