0

我有这个代码:

情节.php

    <?$feedback = new feedback;
$articles = $feedback->fetch_all();

      if (isset($_POST['name'], $_POST['post'])) {
             $cast = $_GET['id'];
             $name = $_POST['name'];
             $email = $_POST['email'];
             $post = nl2br ($_POST['post']);
             $ipaddress = $_SERVER['REMOTE_ADDR'];

if (empty($name) or empty($post)) {
             $error = 'All Fields Are Required!';
}else{
$query = $pdo->prepare('INSERT INTO comments (cast, name, email, post, ipaddress) VALUES(?, ?, ?, ?, ?)');
     $query->bindValue(1, $cast);
     $query->bindValue(2, $name);
     $query->bindValue(3, $email);
     $query->bindValue(4, $post);
     $query->bindValue(5, $ipaddress);

     $query->execute();
} }?>
<div align="center">
<strong>Give us your feedback?</strong><br /><br />

<?php if (isset($error)) { ?>
     <small style="color:#aa0000;"><?php echo $error; ?></small><br /><br />
<?php } ?>

<form action="episode.php?id=<?php echo $data['cast_id']; ?>" method="post" autocomplete="off" enctype="multipart/form-data">
<input type="text" name="name" placeholder="Name" /> / <input type="text" name="email" placeholder="Email" /><small style="color:#aa0000;">*</small><br /><br />
<textarea rows="10" cols="50" name="post" placeholder="Comment"></textarea><br /><br />
<input type="submit" onclick="myFunction()" value="Add Comment" />
<br /><br />
<small style="color:#aa0000;">* <b>Email will not be displayed publicly</b></small><br />
</form>

</div>

包含.php

class feedback { public function fetch_all(){
    global $pdo;
      $query = $pdo->prepare("SELECT * FROM comments");
      $query->bindValue(1, $cast);
      $query->execute(); return $query->fetchAll();
              } }

此代码按预期更新到数据库。但在提交后,它会重新加载表单操作中提到的当前页面。

但是当我刷新页面以查看正在添加的评论时,它要求重新提交。如果我点击提交,那么评论会再次添加。

我怎样才能阻止这种情况发生?

也许我可以隐藏评论框并显示一条感谢信息,但这不会阻止重复输入。

请帮忙。谢谢你。

凯夫

4

2 回答 2

2

您需要在其中添加重定向。所以在你的 POST 块的底部添加

if(isset($_POST['name'], $_POST['post'])) {
    // Do POST stuff here

    header('Location: your/url/here');
    exit;
}

这会向浏览器发送 302 重定向,并且会干净地加载页面。由于这是一个 GET 操作,因此也不存在重新加载问题。

于 2013-11-04T04:07:46.850 回答
0

跑完之后

$query->execute();

您可以取消设置变量:

unset($name, $email, $post);
于 2013-11-04T04:05:37.670 回答