• 注册
当前位置:1313e > php >正文

简单的php mysql聊天室实现方法(附源码)

本文实例讲述了简单的php+mysql聊天室实现方法。分享给大家供大家参考,具体如下:

这里介绍的程序分为 8 个文件:

frameset框架页面:index.php

显示聊天室内容页:show.php

用户登陆页面:login.php

用户发言页面:speak.php

数据库配置文件:config.php

页面美化样式:style.css

数据库文件:chat.sql

发言表情包:face/

分别介绍如下:

一、数据库文件chat.sql如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `chat`
-- ----------------------------
DROP TABLE IF EXISTS `chat`;
CREATE TABLE `chat` (
 `chtime` datetime default NULL,
 `nick` char(10) NOT NULL,
 `words` char(150) default NULL,
 `face` int(11) default NULL
) ENGINE=InnoDB DEFAULT CHARSET=gb2312;
-- ----------------------------
-- Records of chat
-- ----------------------------
INSERT INTO chat VALUES ('2013-03-21 04:15:14', 'smiling', '测试显示发言', '3');
INSERT INTO chat VALUES ('2013-03-21 04:46:26', 'smiling', '时间有问题,', '5');
INSERT INTO chat VALUES ('2013-03-21 04:47:28', 'php新手', '新手来了。', '1');
INSERT INTO chat VALUES ('2013-03-21 04:55:19', 'php新手', '显示正确啦', '6');
INSERT INTO chat VALUES ('2013-03-21 17:12:47', 'php新手', '正确显示时间', '5');
INSERT INTO chat VALUES ('2013-03-21 17:23:19', 'php新手', '时间显示正确。', '7');
INSERT INTO chat VALUES ('2013-03-21 17:23:29', 'php新手', '哈哈', '1');
INSERT INTO chat VALUES ('2013-03-22 08:28:00', '', '今天再来看看。', '3');

二、框架页面如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>简单的php+mysql聊天室--框架页title>
head>
<frameset rows="*,80" cols="*" framespacing="0" bordercolor="#E1D1AE">
 <frameset rows="*" cols="*,284">
  <frame src="show.php" name="mainFrame"/>
  <frame src="login.php" name="rightFrame"/>
 frameset>
 <frame src="speak.php" name="bottomFrame"/>
frameset>
<noframes><body>
body>
noframes>
html>

三、用户登陆页面login.php如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
简单的php+mysql聊天室--登陆页
"style.css" rel="stylesheet" type="text/css" />
"80%"border="0" cellspacing="0"cellpadding="0">
 
  
 
 
"250"border="0" align="center"cellpadding="5"cellspacing="1" bgcolor="#CBB486">
 
  
 
 
  
 
"30" align="center" bgcolor="#F5E6C1">
    
    if($_GET["tj"] == "out"){
    setcookie ("nick", "", time() - 3600);
    header("refresh:0; URL='login.php'");
    }
    if($_POST["submit"]){
    setcookie("nick",$nick); //用cookie记录用户昵称,也可以用SESSION
    header("refresh:0; URL='login.php'");
    }
    ?>
    if($_COOKIE["nick"]){echo "欢迎您 ".$_COOKIE["nick"].退出房间";}else{echo "请输入您的昵称";}?>
"#F5E6C1">
"" method="post">
"text" name="nick" cols="20">
"submit" name="submit" value="登录">
"80%"border="0" cellspacing="0"cellpadding="0">
 
  
 
 
"250"border="0" align="center"cellpadding="5"cellspacing="1" bgcolor="#CBB486">
 
  
 
"70" bgcolor="#F5E6C1" class="login">程序说明:因本聊天室是作者仅花了一天时间而写的程序,所以仅适合新手练习研究,高手可以进行绕行,新手可以在本基础上进行增加发言IP和其它字段功能,最主要的是理解本程序的制作原理。欢迎新手朋友加入夏日源码交流群:"qid">101140934

四、用户发言页面speak.php如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
简单的php+mysql聊天室--发言页
"style.css" rel="stylesheet" type="text/css" />
"80%"border="0" cellspacing="0"cellpadding="0">
 
  
 
"2">
"show.php" target="mainFrame" method="post">
  发言表情:
"radio" value="1" name="face" checked="checked" />
"face/PIC1.GIF" width="20" height="20" border="0" />
"radio" value="2" name="face" />
"face/PIC2.GIF" width="20" height="20" border="0" />
"radio" value="3" name="face" />
"face/PIC3.GIF" width="20" height="20" border="0" />
"radio" value="4" name="face" />
"face/PIC4.GIF" width="20" height="20" border="0" />
"radio" value="5" name="face" />
"face/PIC5.GIF" width="20" height="20" border="0" />
"radio" value="6" name="face" />
"face/PIC6.GIF" width="20" height="20" border="0" />
"radio" value="7" name="face" />
"face/PIC7.GIF" width="20" height="20" border="0" /> 
"text" name="words" cols="20">
"submit" value="发言">

五、显示聊天室内容页show.php如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require_once('config.php'); ?>
if($words){
$query="insert into chat(chtime,nick,words,face)values(now(),'$nick','$words','$face')";//插入SQL语句
mysql_query($query,$link_ID); //发送留言到数据库
header("refresh:0; URL='show.php'"); }
?>
简单的php+mysql聊天室--显示留言页
"style.css" rel="stylesheet" type="text/css" />
"refresh" content="5;url=show.php">
    //最新发言显示在最下面
    $sql="select * from chat order by chtime asc";
    $result=mysql_query($sql);
    $total=mysql_num_rows($result);
    $info=($total/15-1)*15;
    if($total<15){
    $str="select * from chat order by chtime asc;" ; //查询字符串
    }else{
    $str="select * from chat order by chtime asc limit $info,15;" ; //查询字符串
    }
     $result=mysql_query($str,$link_ID); //送出查询
     while($row=mysql_fetch_array($result)){
?>
"700"border="0" align="center"cellpadding="5"cellspacing="1" bgcolor="#CBB486">
 
  
  
  
  
  
  
  
 
"33" align="left" bgcolor="#F5E6C1" class="font">昵称: "41" align="center" bgcolor="#F5E6C1" class="font">if($row[nick] == ""){echo "游客";}else{echo $row[nick];}?> "42" align="center" bgcolor="#F5E6C1" class="font">"face/PIC.GIF" width="20" height="20"> "56" align="left" bgcolor="#F5E6C1" class="font">发言内容: "160" align="left" bgcolor="#F5E6C1" class="font">echo $row[words];?> "56" align="left" bgcolor="#F5E6C1" class="font">发言时间: "244" align="left" bgcolor="#F5E6C1" class="font">echo $row[chtime];?>
"100"border="0" align="center"cellpadding="0"cellspacing="0">
 
  
 
"5">

本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 162202241@qq.com 举报,一经查实,本站将立刻删除。

最新评论

欢迎您发表评论:

请登录之后再进行评论

登录
相关推荐