根据许多网友需求,特地把我站的这个模拟 oicq 的在线聊天的东西献给大家!
1 用户必须注册登陆,在数据库 urinfo 里面保存如下几个字段
name 不用问了,这是登陆用的用户名,必须唯一
password 登陆密码
nickname 用户昵称,也就是显示的名字
face 存放着用户头像的编号,比如 01,代表 /images/face/01.gif 头像文件
onlinestatus 用户是否在线的标志,在用户登陆的时候设置为 1
currentdate 用户最后访问/更新的时间,用于判断用户是否在线
聊天纪录 forumtalk 的结构为
create table forumtalk (
id int(11) not null auto_increment,
nder varchar(20) not null,
receiver varchar(20) not null,
date int(11) default ‘0̵什么是艺考7; not null,
readsign tinyint(4) default ‘0’ not null,
body varchar(200) not null,
primary key (id),
unique id_2 (id),
key id (id)
);
其中 nder 是发送人起源英文的 name
receiver 是接受人的 name
date 是发言的时间
readsign 发言是否已经阅读过
body 发言内容
2 显示在线用户的头像
<?
$onlineresult = mysql_query(“lect name,nickname,face,entertimes from urinfo where onlinestatus=1 and currentdate >”.(date(“u”)-120));
$onlinenumber = mysql_num_rows($onlineresult);
echo “欢迎光临,共有:”.$onlinenumber.”位朋友在线,按头像发短信息:”;
for($i=0学费包括哪些费用;$i<$onlinenumber;$i++)
{
if(!$onlineur = mysql_fetch_array($onlineresult))break;
echo “<a onclick=mm_openbrwindow(‘shortalk.php?talkt百丈崖漂流o=”.$onlineur[‘name’].”‘,'”.$onlineur[‘name’].”‘,’width=300,height=250’)><img src=’images/face/”.$onlineur[‘face’].”.gif’ width=20 height=20 “;
if($name == $onlineur[‘name’])echo “border=1 “;
echo ” title=’代号:”.$onlineur[‘name’].”\n昵称:”.$onl坚持作文开头ineur[‘nickname’].”\n来访:”.$onlineur[‘entertimes’].”‘></a>”;
}
?>
其中的 onclick 用于弹出发送消息的对话窗口,大家可以在网页的源代码里面看到
本文发布于:2023-04-06 06:02:09,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/a54985ddf38eb3942fb32161f9c564c8.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:模拟OICQ的实现思路和核心程序(一).doc
本文 PDF 下载地址:模拟OICQ的实现思路和核心程序(一).pdf
留言与评论(共有 0 条评论) |