PHP模塊從Query String(查詢字符串)中接收表單數(shù)據(jù),更新到命名為chat的數(shù)據(jù)庫表中。chat數(shù)據(jù)庫表有命名為ID
、USERNAME
、CHATDATE
和MSG
的列。ID字段是自動遞增字段,所以這個ID字段的賦值將自動遞增。當(dāng)前的日期和時間,會更新到CHATDATE列。
require_once('dbconnect.php'); db_connect(); $msg = $_GET["msg"]; $dt = date("Y-m-d H:i:s"); $user = $_GET["name"]; $sql="INSERT INTO chat(USERNAME,CHATDATE,MSG) " . "values(" . quote($user) . "," . quote($dt) . "," . quote($msg) . ");"; echo $sql; $result = MySQL_query($sql); if(!$result) { throw new Exception('Query failed: ' . mysql_error()); exit(); }
為了接收來自數(shù)據(jù)庫表中所有用戶的聊天消息,timer函數(shù)被設(shè)置為循環(huán)5秒調(diào)用以下的JavaScript命令,即每隔5秒時間執(zhí)行g(shù)et_chat_msg函數(shù)。
var t = setInterval(function(){get_chat_msg()},5000);
get_chat_msg是一個基于Ajax的函數(shù)。它執(zhí)行chat_recv_ajax.php程序以獲得來自于數(shù)據(jù)庫表的聊天信息。在 onreadystatechange屬性中,另一個JavaScript 函數(shù)get_chat_msg_result被連接起來。在返回來自于數(shù)據(jù)庫表中的聊天消息的同時,程序控制進入到 get_chat_msg_result函數(shù)。
// // General Ajax Call // var oxmlHttp; var oxmlHttpSend; function get_chat_msg() { if(typeof XMLHttpRequest != "undefined") { oxmlHttp = new XMLHttpRequest(); } else if (window.ActiveXObject) { oxmlHttp = new ActiveXObject("Microsoft.XMLHttp"); } if(oxmlHttp == null) { alert("Browser does not support XML Http Request"); return; } oxmlHttp.onreadystatechange = get_chat_msg_result; oxmlHttp.open("GET","chat_recv_ajax.php",true); oxmlHttp.send(null); }
在chat_recv_ajax.php程序中,來自于用戶的聊天消息會通過SQL select
命令進行收集。為了限制行數(shù),在SQL查詢中還給出了限制子句(limit 200),即要求聊天數(shù)據(jù)庫表中的***200行。所獲得的消息再返回給Ajax函數(shù),用于在聊天窗口中顯示內(nèi)容。
require_once('dbconnect.php'); db_connect(); $sql = "SELECT *, date_format(chatdate,'%d-%m-%Y %r') as cdt from chat order by ID desc limit 200"; $sql = "SELECT * FROM (" . $sql . ") as ch order by ID"; $result = mysql_query($sql) or die('Query failed: ' . mysql_error()); // Update Row Information $msg=""; while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) { $msg = $msg . "" . "" . ""; } $msg=$msg . "