php表单写入文本文件 - 防止POST重定向重新提交

时间:2014-01-24 14:02:22

标签: php forms

下面的代码是一个php表单,它写入txt文件并在同一页面上输出结果。

然而,当我刷新页面时,POST数据会再次自动添加 - 我想阻止这一点。我知道我应该将用户重定向到另一个页面,但如果我的结果在同一页面上并且我希望它们保持在同一页面上,我该怎么做呢:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <title>Score Watch</title>
 </head>
<body>
 <p>
 <form id="form1" name="form1" method="post" action="">
 <label>Date: &nbsp;
<input name="date" class="datepicker" id="date" required type="text"
data-hint="" value="<?php echo date('d/m/Y'); ?>" />
 </label>
 <br>
 <label>Score:
 <input type="text" name="name" id="name" />
 </label>
  <label>
 <input type="submit" name="submit" id="submit" value="Submit" />
 </label>
 </form>
  </p>
 <?php
    $date = $_POST["date"];
    $name = $_POST["name"];
    $posts = file_get_contents("posts.txt");
    $posts = "$date $name<br>" . $posts;
    file_put_contents("posts.txt", $posts);
    echo $posts;
 ?>
</body>
 </html>

我见过header('Location')策略,但由于我在同一页面输出数据,我无法使用它?

2 个答案:

答案 0 :(得分:3)

将其添加到您的页面

<?php 
if(isset($_POST['name'],$_POST['date'])){
    // Text we want to add
    $posts = "{$_POST['date']} {$_POST['name']}<br>";

    // Add data to top of the file
    file_put_contents("posts.txt", $posts . file_get_contents('posts.txt') );

    // Redirect user to same page
    header('Location: ' . $_SERVER['REQUEST_URI']);
}
?>

改变你的身体 替换这个:

<?php
    $date = $_POST["date"];
    $name = $_POST["name"];
    $posts = file_get_contents("posts.txt");
    $posts = "$date $name<br>" . $posts;
    file_put_contents("posts.txt", $posts);
    echo $posts;
?>

用这个:

<?php
    // Print contents of posts.txt
    echo file_get_contents("posts.txt");
?>

答案 1 :(得分:1)

如果您不想使用其他页面,可以使用同一页面。数据应通过GET或SESSION

传输

为防止循环重定向,您应该放入重定向条件。

我建议:

位于页面顶部

<?php session_start(); ?>

然后

<?php
if (isset($_POST['date'])) {
    $date = $_POST["date"];
    $name = $_POST["name"];
    $posts = file_get_contents("posts.txt");
    $posts = "$date $name<br>" . $posts;
    file_put_contents("posts.txt", $posts);
    $_SESSION['posts'] = $posts;
    header("Location: samepage.php?success=1");
}
?>

<?php
if (isset($_GET['success'], $_SESSION['posts'])) {
    echo $_SESSION['posts']
}
?>

重定向也应该在HTML之前,以防止发送标头问题。

只有最后一个块可以在<p>内打印,因为它是实际输出。