Home >php教程 >php手册 >模拟OICQ的实现思路和核心程序三转--建议加入精华区

模拟OICQ的实现思路和核心程序三转--建议加入精华区

WBOY
WBOYOriginal
2016-06-13 10:24:59874browse

文章来源:php世纪网 5 聊天信息的发送、阅读和回复程序 - shortalk.php require("require.php"); // 判断用户是否合法在线的公用程序 ?>

短信息 if($action == "view") { $tmp = mysql_fetch_array(mysql_query("select sender,body,date from forumtalk where id=$talknumber and receiver=$name")); $msg = $tmp[body]; $message = ereg_replace(" "," ",$msg); mysql_query("update forumtalk set readsign=1 where id=$talknumber"); $sendernickname = mysql_fetch_row(mysql_query("select nickname from userinfo where name=".$tmp[sender]."")); ?>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn