我制作了一个简单的评论系统。当我重新加载页面时,首先插入的注释是重复的。我应该使用标头重定向request_uri吗?我这样做了,它变成了一个标题循环。 提前致谢
public function comment($username, $comment, $code)
{
if(!empty($username) && !empty($comment) && !empty($code))
{
$date =date("Y-m-d H:i:s");
if($insert = $this->db->prepare("INSERT INTO reviews (username, comment, time) VALUES (?, ?, ?)"))
{
$insert->bind_param('sss', $username, $comment, $date);
$insert->execute();
}
else
{
echo "iets gaat mis met inserten";
}
}
else
{
echo "missing fields";
}
}
public function retrieve()
{
if($retrieve = $this->db->query("SELECT username, comment, time FROM reviews ORDER BY id LIMIT 0, 5"))
{
while($row = $retrieve->fetch_assoc())
{
$output .= '<div class="comment">';
$output .= '<div class="name">'.$row['username'].'</div>';
$output .= '<div class="date">Added at '.date('H:i \o\n d M Y',strtotime($row['time'])).'"></div>';
$output .= '<p>'.$row['comment'].'</p>';
$output .= '</div>';
}
return $output;
}
}
<?php
$reizen= new reizen;
echo $reizen->retrieve();
?>
<script type="text/javascript">
</script>
<?php
$output = '';
$output .= '<div id="contactform">';
$output .= '<form name="form" id="form" action="index.php?page=review" method="post">';
$output .= '<label>Name:</label>';
$output .= '<input type="text" name="username" />';
$output .= '<label>comment</label>';
$output .= '<textarea name="comment" rows="20" cols="20"></textarea>';
$output .= '<label><img src="captcha.php"></label>';
$output .= '<input type="text" name="code">';
$output .= '<input type="submit" class="submit" name="submit" value="Send message" />';
$output .= '</form>';
$output .= '</body>';
$output .= '</div>';
$output .= '</html>';
echo $output;
if(isset($_POST['submit']))
{
$username = $_POST['username'];
$comment = $_POST['comment'];
$code = $_POST['code'];
$reizen->comment($username, $comment, $code);
}
?>
答案 0 :(得分:-1)
你可以给我们提示你如何显示$ input吗?
也可以通过出版你的意思是html重复或者表单仍然包含相同的评论? 因为如果是这样,你可以在输入中添加attr autocomplete =“false”以提交注释以避免这种情况。
因为你的数据库也是重复的。那么请告诉我们你的表单工作流程。因为你在两次调用评论功能的地方..
一个好主意是将uniqure密钥放在用户名,post_id,comment上,以便用户不能在同一帖子上说两次完全相同的评论。根据你目前的情况,当你的代码尝试重新提交两次相同的评论时,这个uniqure密钥会触发错误,并且当发生这种情况时你将能够识别。
用于调配
- 当问题发生时,还有一个独特的关键技巧也可以帮助你解决火灾错误。
-u正在调用页面末尾的comment()函数..以及retrive functinon BEFORE
IT
所以你做的是你加载所有旧的评论然后添加那条评论(除非你刷新它不会显示)来修复那个移动你if($_POST['submit'])
之前调用数据库中的所有评论