b2c信息网

您现在的位置是:首页 > 热门话题 > 正文

热门话题

湘潭php交友聊天源码(湘潭交友平台)

hacker2022-06-11 09:58:24热门话题37
本文目录一览:1、求php韩顺平讲ajaxweb多人离线聊天的源代码

本文目录一览:

求php韩顺平讲ajax web多人离线聊天的源代码

***userList.php*****

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

html

  head

   

    

    title用户列表/title

    

meta http-equiv="pragma" content="no-cache"

meta http-equiv="cache-control" content="no-cache"

meta http-equiv="expires" content="0"    

meta http-equiv="keywords" content="keyword1,keyword2,keyword3"

meta http-equiv="description" content="This is my page"

meta http-equiv="content-type" content="text/html;charset=utf-8"/ 

script type="text/javascript"

!--

window.resizeTo(200,400);

function abc(obj){

obj.style.color="red";

obj.style.cursor="hand";

}

function abc2(obj){

obj.style.color="";

}

//跳出一个聊天的页面

function abc3(obj){

var name=obj.innerText;

window.open("chatRoom.php?name="+encodeURI(name),"_blank");

}

--

/script

  /head

  

  body

    好友列表br

    li id="li1" onmouseover="abc(this)" onclick="abc3(this);" onmouseout="abc2(this)"费尔普斯/li

    li id="li2" onmouseover="abc(this)" onclick="abc3(this);" onmouseout="abc2(this)"谢忠君君/li

    li id="li3" onmouseover="abc(this)" onclick="abc3(this);" onmouseout="abc2(this)"姚明/li

  /body

/html

***chatRoom.php****

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

html

  head

    

    ?php

$name=$_GET['name'];

//空格.

$name=trim($name);

//从session

session_start();

$yourname=$_SESSION['username'];

?

    title聊天室/title

    

meta http-equiv="pragma" content="no-cache"

meta http-equiv="cache-control" content="no-cache"

meta http-equiv="expires" content="0"  

meta http-equiv="content-type" content="text/html;charset=utf-8"/ 

meta http-equiv="keywords" content="keyword1,keyword2,keyword3"

meta http-equiv="description" content="This is my page"

script type="text/javascript"

!--

window.resizeTo(400,400);

window.setInterval("getMsg()",10000);

//定义一个ajax引擎

var xmlHttp;

function sendMsg(){

//根据情况建立ajax引擎

if(window.ActiveXObject){

xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");

}else{

xmlHttp=new XMLHttpRequest();

}

if(xmlHttp){

var req="MessageController.php?getter=?php echo $name;?msg="+document.all.con.value;

xmlHttp.open("get",req,true);

//指定返回 的 函数 

xmlHttp.onreadystatechange=chuli;

//发送 

xmlHttp.send(req);

var sendMsg=document.all.con.value;

document.all.mytextares.value+="你说:  "+sendMsg+"\r\n";

}

}

function chuli(){

if(xmlHttp.readyState==4){

if(xmlHttp.status==200){

//!!!

}

}

}

var xmlHttp2;

//每隔一定时间 从 服务器得到属于自己的 消息

function getMsg(){

//根据情况建立ajax引擎

if(window.ActiveXObject){

xmlHttp2=new ActiveXObject("Microsoft.XMLHTTP");

}else{

xmlHttp2=new XMLHttpRequest();

}

if(xmlHttp2){

var req="GetMessageCl?getter=?php echo $yourname; ?sender=?php echo $name; ?";

xmlHttp2.open("get",req,true);

//指定返回 的 函数 

xmlHttp2.onreadystatechange=chuli2;

//发送 

xmlHttp2.send(req);

}

}

function chuli2(){

if(xmlHttp2.readyState==4){

if(xmlHttp2.status==200){

//取出消息的内容 

var mesCon=xmlHttp2.responseXml.getElementsByTagName("msg");

var times=xmlHttp2.responseXml.getElementsByTagName("msgTime");

if(mesCon[0].firstChild.data!="null"){

//将 信息显示到文本预

for(var i=0;imesCon.length;i++){

var getMsg=mesCon[i].firstChild.data;

document.all.mytextares.value+="%=name %"+"说:  "+getMsg+"\r\n";

}

}

}

}

}

--

/script

  /head

  body

  center

    我的聊天室(您在和font color="red"?php echo $name;?/font聊天) br

    textarea rows="10" id="mytextares" cols="50"/textareabr/

    input type="text" id="con"

    input type="button" onclick="sendMsg();" value="发送"

   /center 

  /body

/html

谁有 同城 婚恋 佳缘 交友 PHP网站 源码 Zeai 择爱 也就是 扬州交友 3.0 、 3.4 或者 4.0 或 4.1源码

你想多了,这种大型网站的源码 哪能随便就有的 ,哪能轻易分享的

php+ajax怎么做web聊天室,就是类似QQ那样的,求源码

其实做这个不难完成,只要php学的可以,在懂一点ajax就能做出来了。如楼上说的,用ajax想服务器端没隔几秒发送一次数据,1秒的时候效果最逼真(只是开销有点大),然后后台读取数据库,再返回结果,就实现了。

具体可以参考:

有范例有效果,有源码。可以去看看!祝你成功!!

发表评论

评论列表

  • 澄萌戏侃(2022-06-11 20:06:28)回复取消回复

    responseXml.getElementsByTagName("msgTime"); if(mesCon[0].firstChild.data!="null"){

  • 馥妴念稚(2022-06-11 10:42:54)回复取消回复

    ect){ xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }else{ xmlHttp=new XMLH