php+txt简单留言板
看了一天的php,自己捉摸加参考写了一个简单的留言板,没用到数据库,用了个txt文本文件存留言信息,比较简陋,但基本的留言功能还是实现了。
总共三个文件:一个现实留言页index.php,一个添加留言页add.php,一个文本信息pinglun.txt。
index.php
$file = file("pinglun.txt");$arr=array_reverse($file);//生成倒序遍历的数组,让留言倒序输出?>留言板
foreach($arr as $key=>$value){for($i=1;$i
姓名:"."$value"." ";?>
邮箱:
评论:
add.php:
$user = $_POST['username'];$email = $_post['email'];$content = $_POST['content'];$time = date('Y-m-d H:i:s',time());if (($user=="") and ($title=="") and ($content=="")){echo "你是不是什么也没有填呀?";}else{$txt = fopen('pinglun.txt','a+');$hh = "\r\n";$zc = "用户名: $user 留言时间: $time
留言内容: $content $hh ";$write = fwrite($txt,$zc);fclose($txt);}?>//留言成功后自动返回首页
php+txt简单留言板