当前位置:首页 > 综合实例 > 列表

php文件操作之小型留言本实例

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-01 10:24:49 浏览: 评论:0 

这篇文章主要介绍了php文件操作之小型留言本,实例分析了php基于文件实现的留言本功能,需要的朋友可以参考下,本文实例讲述了php文件操作之小型留言本,分享给大家供大家参考,具体如下:

Index.php文件如下:

  1. <?php  
  2. $path = "DB/"//定义路径  
  3. $dr = opendir($path); //打开目录  
  4. while($filen = readdir($dr)) //循环读取目录中的文件  
  5. {  
  6.   if($filen != "." and $filen != "..")  
  7.   {  
  8.     $fs = fopen($path.$filen"r");  
  9.     echo "<B>标题:</B>".fgets($fs)."<BR>";  
  10.     echo "<B>作者:</B>".fgets($fs)."<BR>";  
  11.     echo "<B>内容:</B><PRE>".fread($fsfilesize($path.$filen))."</PRE>";   
  12.     echo "<HR>";  
  13.     fclose($fs);  
  14.   }  
  15. }  
  16. closedir($dr//关闭目录  
  17. ?>  

Post.php文件如下:

  1. <?php  
  2. $path = "DB/";  
  3. $filename = "S".date("YmdHis").".dat";  
  4. $fp = fopen($path.$filename"w");  
  5. fwrite($fp$_POST["title"]."/n");  
  6. fwrite($fp$_POST["author"]."/n");  
  7. fwrite($fp$_POST["content"]."/n");  
  8. fclose($fp);  
  9. echo "留言发表成功!";  
  10. echo "<a href="Index.php" mce_href="Index.php">返回首页</a>";  
  11. ?>  
  12.  
  13. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
  14. "http://www.w3.org/TR/html4/loose.dtd"
  15. <html> 
  16. <head> 
  17. <title>发表新的留言</title> 
  18. <meta http-equiv="Content-Type" content="text/html; charset=gb2312"
  19. </head> 
  20. <body> 
  21. <H1><p align="center">发表新的留言</p></H1> 
  22. <form name="form1" method="post" action="Post.php"
  23.  <table width="500" border="0" align="center" cellpadding="0" cellspacing="0"
  24.   <tr> 
  25.    <td>标题</td> 
  26.    <td><input name="title" type="text" id="title" size="50"></td> 
  27.   </tr> 
  28.   <tr> 
  29.    <td>作者</td> 
  30.    <td><input name="author" type="text" id="author" size="20"></td> 
  31.   </tr> 
  32.   <tr> 
  33.    <td>内容</td> 
  34.    <td><textarea name="content" cols="50" rows="10" id="content"></textarea></td> 
  35.   </tr> 
  36.  </table> 
  37.  <p align="center"
  38.   <input type="submit" value="Submit"
  39.   <input type="reset" value="Reset"
  40. </p> 
  41. </form> 
  42. </body> 
  43. </html>

Tags: php小型留言本

分享到: