Home  >  Article  >  Backend Development  >  PHP文件操作实现简单留言板

PHP文件操作实现简单留言板

WBOY
WBOYOriginal
2016-06-20 12:49:281313browse

//

<?phpdate_default_timezone_set("PRC");$str="<span style='color:red;font-size:30px'>".$_GET['mname']."</span>";$time=date("Y-m-d H:i:s");$str=$time."  ".$str."<hr/>";file_put_contents("test.txt", $str,FILE_APPEND);?><!DOCTYPE html><html><head><title>留言板</title></head><body><h2>文件留言板</h2><hr/><form action="index.php">   <h3>请留言</h3>   <textarea name="mname" cols="100" rows="10"></textarea>   <br>   <input type="submit" value="提交" /></form><h2>留言查看</h2><?phpreadfile("test.txt");?></form></body></html>


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn