1、創建聊天消息表,其表的欄位有消息內容,發送時間和發送者的名稱; SQL: CREATE TABLE `guanhui`.`message` ( `id` INT(10) NOT NULL AUTO_INCREMENT COMMENT '消息ID' , `content` VARCHAR(255) ...
1、創建聊天消息表,其表的欄位有消息內容,發送時間和發送者的名稱;
SQL:
CREATE TABLE `guanhui`.`message` (
`id` INT(10) NOT NULL AUTO_INCREMENT COMMENT '消息ID' ,
`content` VARCHAR(255) NOT NULL COMMENT '消息內容' ,
`sender` VARCHAR(60) NOT NULL COMMENT '發送者' ,
`send_time` INT(10) NOT NULL COMMENT '發送時間' ,
PRIMARY KEY (`id`)
) ENGINE = MyISAM;
2、創建php文件將聊天消息查詢出來,並以json格式輸出;
$con = mysql_connect("localhost","","");
if (!$con) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db("chat", $con);
mysql_query("set names 'utf8'");
$sql = "SELECT * FROM `message`";
$result = mysql_query($sql);
if(isset($result)){
json_encode(array(
'code' => 0,
'msg' => 'OK',
'data' => mysql_fetch_array($result, MYSQL_ASSOC)
))
} else {
json_encode(array(
'code' => 0,
'msg' => '聊天信息為空!'
))
}
3、在前端使用Ajax輪詢請求php文件,並將消息展示出來。
setInterval(function(){
$.get('/get_message_list.php', function(data){
$(data).each(function(value, item){
$('#message_list').append('來自:' + data.sender + '的消息:' + data.message + '發送時間:', data.send_time);
});
});
}, 600);
4、創建send_message.php用來接收發送的消息,並將數據儲存到資料庫。
$send_time = date('Y-m-d H:i:s',time());;
$send = $_POST['sender'];
$content = $_POST['content'];
$con = mysql_connect("localhost","","");
if (!$con) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db("ing", $con);
mysql_query("set names 'utf8'");
$insert="INSERT INTO `chat` (`id` ,`sender` ,`content` ,`send_time`) VALUES (NULL , '$sender', '$content', '$send_time')";
$result = mysql_query($insert);
5、在前端獲取要發送的消息,並請求send_message.php。
function sendcontent()
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
// 服務端返回了正確數據,開始響應處理
{
document.getElementById("input").innerHTML="";
}
}
xmlhttp.open("POST","/send_message.php",true);
var f=document.chat;
var content = f.content.value;
var sender = f.sender.value;
//發送請求
//這裡使用Post方法傳遞參數;
//將要構造的參數連接起來,接收的時候:$_POST['send'];
var post_str= "content="+ content+"&sender="+sender;
//使用post的時候必須在發送請求之前加上下麵這句
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send(post_str);
}
更多學習內容請訪問:
騰訊T3-T4標準精品PHP架構師教程目錄大全,只要你看完保證薪資上升一個臺階(持續更新)