我正在我的网站上写一个评论块。我将评论保存在文件中并在网页上打印内容。但问题是当我刷新网页时,最后一条评论会显示两次。
这是我的代码:我正在我的网站上写一个评论块。我将评论保存在文件中并将内容打印在
网页。但问题是当我最后一次刷新网页时
评论显示两次。
这是我的代码:
<html>
<body>
<form method="GET">
<textarea rows="15" cols="50" name="comments" >
</textarea>
<input type="submit" value="submit" >
</form>
</body>
</html>
<?php
if(!($_GET["comments"]==null)){
$comments = "Anonymous said:<br>".$_GET
["comments"]."<br><br><br><br>";
$file_comments = fopen("comments.txt","a");
fwrite($file_comments,$comments);
fclose($file_comments);
$_GET["comments"] = null;
$comments = null;
}
$comments = file_get_contents("comments.txt");
echo $comments;
$_GET["comments"] = null;
$comments = null;
?>