当前位置:首页 > 综合实例 > 列表

PHP+mysql+ajax轻量级聊天室实例(兼容Chrome和IE)

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-15 10:34:49 浏览: 评论:0 

ajax聊天室就是定时不定的刷新框架页面了,下面来给各位整理了一个PHP+mysql+ajax轻量级聊天室实例(兼容Chrome和IE)的例子,希望对大家有帮助.

做了一个QQ聊天交友网站,想加个聊天的功能,于是做完用PHP做了简单又强大的聊天室.

1.创建mysql数据库表:create table chat( id bigint AUTO_INCREMENT,username varchar(20),chatdate datetime,msg varchar(500),primary key(id));

2.编写建议连接数据库函数:dbconnect.php

  1. <?php 
  2. function db_connect() 
  3.   date_default_timezone_set("Asia/Shanghai"); 
  4.   $link = mysql_connect("xxx.xxx.xxx.xxx""databasename""password"
  5.             or die('无法连接: ' . mysql_error()); 
  6.   mysql_select_db("databasename"or die('没有你找到指定数据库'); 
  7.   return true; 
  8.  
  9. function quote($strText
  10.     $Mstr = addslashes($strText); 
  11.     return "'" . $Mstr . "'"
  12.  
  13. function isdate($d
  14.    $ret = true; 
  15.    try 
  16.    { 
  17.        $x = date("d",$d); 
  18.    } 
  19.    catch (Exception $e
  20.    { 
  21.        $ret = false; 
  22.    } 
  23.    echo $x
  24.    return $ret
  25.  
  26. ?> 

3.编写ajax发送和接收函数:ajax发送函数chat_send_ajax.php

  1. <?php 
  2.      require_once('dbconnect.php'); 
  3.      db_connect();  //开源软件:phpfensi.com 
  4.      $msg = iconv("UTF-8","GB2312",$_GET["msg"]); 
  5.      $dt = date("Y-m-d H:i:s"); 
  6.      $user = iconv("UTF-8","GB2312",$_GET["name"]); 
  7.      $sql="INSERT INTO chat(USERNAME,CHATDATE,MSG) " . 
  8.           "values(" . quote($user) . "," . quote($dt) . "," . quote($msg) . ");"
  9.           echo $sql
  10.      $result = mysql_query($sql); 
  11.      if(!$result
  12.      { 
  13.         throw new Exception('Query failed: ' . mysql_error()); 
  14.         exit(); 
  15.      } 
  16. ?> 

ajax接收函数chat_recv_ajax.php:

  1. <?php 
  2. header("Content-Type:text/html;charset=gb2312"); 
  3. header("Expires: Thu, 01 Jan 1970 00:00:01 GMT"); 
  4.    header("Cache-Control: no-cache, must-revalidate"); 
  5.    header("Pragma: no-cache"); 
  6.      require_once('dbconnect.php'); 
  7.      db_connect(); 
  8.       
  9.      $sql = "SELECT *, date_format(chatdate,'%Y年%m月%d日 %r') as cdt from chat order by ID desc limit 200"
  10.      $sql = "SELECT * FROM (" . $sql . ") as ch order by ID"
  11.      $result = mysql_query($sqlor die('Query failed: ' . mysql_error()); 
  12.       
  13.      // Update Row Information 
  14.      $msg="<table border='0' style='font-size: 10pt; color: white; font-family: verdana, arial;'>"
  15.      while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) 
  16.      { 
  17.            $msg = $msg . "<tr><td>" . $line["cdt"] . " </td>" . 
  18.                 "<td>" . $line["username"] . ": </td>" . 
  19.                 "<td>" . $line["msg"] . "</td></tr>"
  20.      } 
  21.      $msg=$msg . "</table>"
  22.       
  23.      echo $msg
  24. ?> 

4.聊天室页面:chat.html

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  2. <html xmlns="http://www.w3.org/1999/xhtml" > 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  5.     <title>聊天页面</title> 
  6.     
  7. <script type="text/javascript"> 
  8. var t = setInterval(function(){get_chat_msg()},5000); 
  9.  
  10. // 
  11. // General Ajax Call 
  12. // 
  13.        
  14. var oxmlHttp; 
  15. var oxmlHttpSend; 
  16.        
  17. function get_chat_msg() 
  18.     if(typeof XMLHttpRequest != "undefined") 
  19.     { 
  20.         oxmlHttp = new XMLHttpRequest(); 
  21.     } 
  22.     else if (window.ActiveXObject) 
  23.     { 
  24.        oxmlHttp = new ActiveXObject("Microsoft.XMLHttp"); 
  25.     } 
  26.     if(oxmlHttp == null) 
  27.     { 
  28.         alert("浏览器不支持XML Http Request!"); 
  29.        return; 
  30.     } 
  31.      
  32.     oxmlHttp.onreadystatechange = get_chat_msg_result
  33.     oxmlHttp.open("GET",encodeURI("chat_recv_ajax.php"),true); 
  34.     oxmlHttp.send(null); 
  35.       
  36. function get_chat_msg_result() 
  37.     if(oxmlHttp.readyState==4 || oxmlHttp.readyState=="complete") 
  38.     { 
  39.         if (document.getElementById("DIV_CHAT") != null) 
  40.         { 
  41.             document.getElementById("DIV_CHAT").innerHTML =  oxmlHttp.responseText; 
  42.             oxmlHttp = null
  43.         } 
  44.         var scrollDiv = document.getElementById("DIV_CHAT"); 
  45.         scrollDivscrollDiv.scrollTop = scrollDiv.scrollHeight; 
  46.     } 
  47.        
  48. function set_chat_msg() 
  49.     if(typeof XMLHttpRequest != "undefined") 
  50.     { 
  51.         oxmlHttpSend = new XMLHttpRequest(); 
  52.     } 
  53.     else if (window.ActiveXObject) 
  54.     { 
  55.        oxmlHttpSend = new ActiveXObject("Microsoft.XMLHttp"); 
  56.     } 
  57.     if(oxmlHttpSend == null) 
  58.     { 
  59.        alert("浏览器不支持XML Http Request!"); 
  60.        return; 
  61.     } 
  62.      
  63.     var url = "chat_send_ajax.php"
  64.     var strname="noname"
  65.     var strmsg=""
  66.     if (document.getElementById("txtname") != null) 
  67.     { 
  68.         strname = document.getElementById("txtname").value; 
  69.         document.getElementById("txtname").readOnly=true
  70.     } 
  71.     if (document.getElementById("txtmsg") != null) 
  72.     { 
  73.         strmsg = document.getElementById("txtmsg").value; 
  74.         document.getElementById("txtmsg").value = ""
  75.     } 
  76.      
  77.     url += "?name=" + strname + "&msg=" + strmsg; 
  78.     oxmlHttpSend.open("GET",encodeURI(url),true); 
  79.     oxmlHttpSend.send(null); 
  80. function clickBtn(e) 
  81.   { 
  82.    if(window.event.keyCode==13) 
  83.    { 
  84.     var id=e.id; 
  85.     switch(id) 
  86.     { 
  87.      case "txtmsg": 
  88.       document.getElementById("Submit2").click(); 
  89.       window.event.returnValue=false
  90.       break; 
  91.      } 
  92.    } 
  93. function fRandomBy(under, over){  
  94. switch(arguments.length){  
  95. case 1: return parseInt(Math.random()*under+1);  
  96. case 2: return parseInt(Math.random()*(over-under+1) + under);  
  97. default: return 0;  
  98. }  
  99. function SetTxtName(){  
  100. var i=fRandomBy(10);  
  101. if(i==0)document.getElementById('txtname').value='无敌战神'
  102. if(i==1)document.getElementById('txtname').value='令狐冲'
  103. if(i==2)document.getElementById('txtname').value='西门吹雪'
  104. if(i==3)document.getElementById('txtname').value='超级玛丽'
  105. if(i==4)document.getElementById('txtname').value='奥巴马'
  106. if(i==5)document.getElementById('txtname').value='恐怖分子'
  107. if(i==6)document.getElementById('txtname').value='聊斋奇女子'
  108. if(i==7)document.getElementById('txtname').value='天朝?潘?; 
  109. if(i==8)document.getElementById('txtname').value='中500万了'
  110. if(i==9)document.getElementById('txtname').value='神级奇葩'
  111. if(i==10)document.getElementById('txtname').value='爱你不是两三天'
  112. }  
  113. </script> 
  114. </head> 
  115. <body onload="SetTxtName();"> 
  116.       
  117.     <div style="border-right: black thin solid; border-top: black thin solid; 
  118.         border-left: black thin solid; border-bottom: black thin solid; 
  119.         background:#fff url('http://www.ihaonet.com/chat/blue.jpg') repeat-x left top; 
  120.         height: 450px;width: 500px; "> 
  121.         <table style="width:100%; height:100%"> 
  122.             <tr> 
  123.                 <td colspan="2" style="font-weight: bold; font-size: 16pt; color: white; font-family: verdana, arial; 
  124.                     text-align: center"> 
  125.                     聊天窗口--全球最大QQ聊天交友网站</td> 
  126.             </tr> 
  127.             <tr> 
  128.                 <td colspan="2" style="font-weight: bold; font-size: 16pt; color: white; font-family: verdana, arial; 
  129.                     text-align: left"> 
  130.                     <table style="font-size: 12pt; color: white; font-family: Verdana, Arial;border: white thin solid; "> 
  131.                         <tr> 
  132.                             <td style="width: 100px"> 
  133.                                 名字:</td> 
  134.                             <td style="width: 100px"><input id="txtname" style="width: 150px" type="text" name="name" maxlength="15" value="匿名" /></td> 
  135.                         </tr> 
  136.                     </table> 
  137.                 </td> 
  138.             </tr> 
  139.             <tr> 
  140.                 <td style="vertical-align: middle;" valign="middle" colspan="2"> 
  141.                     <div style="width: 480px; height: 300px; border-right: white thin solid; border-top: white thin solid; font-size: 10pt; border-left: white thin solid; border-bottom: white thin solid; font-family: verdana, arial; overflow:scroll; text-align: left;" id="DIV_CHAT"> 
  142.                     </div> 
  143.                 </td> 
  144.             </tr> 
  145.             <tr> 
  146.                 <td style="width: 310px"> 
  147.                     <input id="txtmsg" style="width: 350px" type="text" name="msg" onkeydown="return clickBtn(this)"/></td> 
  148.                 <td style="width: 85px"> 
  149.                     <input id="Submit2" style="font-family: verdana, arial" type="button" value="发送" onclick="set_chat_msg()"/></td> 
  150.             </tr> 
  151.             <tr> 
  152.                 <td colspan="1" style="font-family: verdana, arial; text-align: center; width: 350px;"> 
  153.                     </td> 
  154.                 <td colspan="1" style="width: 85px; font-family: verdana, arial; text-align: center"> 
  155.                 </td> 
  156.             </tr> 
  157.         </table> 
  158.     </div> 
  159. </body> 
  160. </html>

Tags: PHP聊天室 mysql聊天室

分享到: