php 加文本文件实现简单留言功能...
时间:2010-08-06 来源:zipu888
hope留言板
hope留言板
尊姓大名:
有何赐教:
<!--浏览用户留言:write_list.php-->
<html>
<head>
<title>我的书房之留言板</title>
</head>
<body>
<?php
function read_a_message(){
$fp=fopen("message.txt","a+"); //打开文件
$msg=fread($fp,filesize("message.txt")); //读取文件内容
fclose($fp); //关闭文件
echo $msg; //输出留言
}
?>
<h1>留言列表</h1>
<table border=1 width=100%>
<tr>
<td>
<?php read_a_message(); ?>
</td>
</tr>
</table>
</body>
<a href="message_add.php">写留言</a>
</html>
<!--添加留言界面:message_add.php-->
<html>
<head>
<title>hope留言板</title>
</head>
<body>
<h1>hope留言板</h1>
<form method="post" action="write_message.php">
<p>尊姓大名:</p>
<input type="text" name="name">
<p>有何赐教:</p>
<textarea name="message" cols="50" rows="5"></textarea>
<p>
<input type="submit" name="ok" value="提交">
<input type="reset" name="cancel" value="取消">
</p>
</form>
</body>
</html>
相关阅读 更多 +