首页 > 开发 > PHP > 正文

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

2024-05-04 23:36:40
字体:
来源:转载
供稿:网友

这篇文章主要介绍了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. ?>  

 

 
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
  2. "http://www.w3.org/TR/html4/loose.dtd"
  3. <html> 
  4. <head> 
  5. <title>发表新的留言</title> 
  6. <meta http-equiv="Content-Type" content="text/html; charset=gb2312"
  7. </head> 
  8. <body> 
  9. <H1><p align="center">发表新的留言</p></H1> 
  10. <form name="form1" method="post" action="Post.php"
  11. <table width="500" border="0" align="center" cellpadding="0" cellspacing="0"
  12. <tr> 
  13. <td>标题</td> 
  14. <td><input name="title" type="text" id="title" size="50"></td> 
  15. </tr> 
  16. <tr> 
  17. <td>作者</td> 
  18. <td><input name="author" type="text" id="author" size="20"></td> 
  19. </tr> 
  20. <tr> 
  21. <td>内容</td> 
  22. <td><textarea name="content" cols="50" rows="10" id="content"></textarea></td> 
  23. </tr> 
  24. </table> 
  25. <p align="center"
  26. <input type="submit" value="Submit"
  27. <input type="reset" value="Reset"
  28. </p> 
  29. </form> 
  30. </body> 
  31. </html> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表