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>input.php用来输入聊天语句
【中国下载站】【设为主页】【收藏本页】【打印本文】【回到顶部】【关闭此页】