首页 / 网页编程 / PHP / PHP简易聊天室实例
PHP简易聊天室实例2008-02-27下面我用读写文本文件的方式给大家简单介绍一下聊天室的制作。该聊天室一共有四个主要的PHP文件:login.php用来登录<html>
<body>
<form action="chat.php">
房 间:<select name="room" >
<option value="大厅">大厅</option>
<option value="客房">客房</option>
<option value="后院">后院</option>
</select>
您的大名:<input type="text" name="name">
<input type=submit value="进入">
</form>
</body>
</html>chat.php为主文件<html>
<head>
<title>简易聊天室(作者:东方一蛇(http://phpinto.126.com))</title>
</head>
<frameset rows="80%,*" cols="*">
<frame src="view.php?room=<?php echo $room; ?>">
<frame src="input.php?name=<?php echo $name; ?>&room=<?php echo $room; ?>">
</frameset>
<noframes>
<body bgcolor="#cccccc">
</body></noframes>
</html>view.php用来显示聊天<html>
<meta http-equiv="Refresh" content="5; url=view.php?room=<?php echo $room; ?>">
<body bgcolor="#cccccc">
<?
switch ($room) {
case "大厅":
$write_file="1.txt";
break;
case "客房":
$write_file="2.txt";
break;
case "后院":
$write_file="3.txt";
break;
default:
$write_file="0.txt";
break;
}
$chat_lenght = 25;
$lines = file($write_file);
$a = count($lines);
$u = $a - $chat_lenght;
for($i = $a; $i >= $u ;$i--){
echo $lines[$i] . "<br>";
}
?>
</body>
</html>