類比OICQ的實現思路和核心程式(一)

來源:互聯網
上載者:User
關鍵字 類比OICQ的實現思路和核心程式(一)
根據許多網友需求,特地把我站的這個類比 OICQ 的線上聊天的東西獻給大家!

1 使用者必須註冊登陸,在資料庫 userinfo 裡面儲存如下幾個欄位
Name 不用問了,這是登陸用的使用者名稱,必須唯一
PassWord 登陸密碼
NickName 使用者暱稱,也就是顯示的名字
Face 存放著帳戶圖片的編號,比如 01,代表 /images/face/01.gif 頭像檔案
OnlineStatus 使用者是否線上的標誌,在使用者登陸的時候設定為 1
CurrentDate 使用者最後訪問/更新的時間,用於判斷使用者是否線上

聊天紀錄 forumtalk 的結構為
CREATE TABLE forumtalk (
id int(11) NOT NULL auto_increment,
sender varchar(20) NOT NULL,
receiver varchar(20) NOT NULL,
date int(11) DEFAULT '0' NOT NULL,
readsign tinyint(4) DEFAULT '0' NOT NULL,
body varchar(200) NOT NULL,
PRIMARY KEY (id),
UNIQUE id_2 (id),
KEY id (id)
);
其中 sender 是發送人的 Name
receiver 是接受人的 Name
date 是發言的時間
readsign 發言是否已經閱讀過
body 發言內容

2 顯示線上使用者的頭像
$onlineresult = MySQL_query("select Name,NickName,Face,EnterTimes from userinfo where OnlineStatus=1 and CurrentDate >".(date("U")-120));
$onlinenumber = mysql_num_rows($onlineresult);
echo "歡迎光臨,共有:".$onlinenumber."位朋友線上,按頭像發簡訊息:";
for($i=0;$i<$onlinenumber;$i++)
{
if(!$onlineuser = mysql_fetch_array($onlineresult))break;
echo "if($name == $onlineuser['Name'])echo "border=1 ";
echo " title='代號:".$onlineuser['Name']."\n暱稱:".$onlineuser['NickName']."\n來訪:".$onlineuser['EnterTimes']."'>";
}
?>

其中的 onClick 用於彈出發送訊息的交談視窗,大家可以在網頁的原始碼裡面看到
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.