10

我正在寻找一种在刷新页面时停止在数据库中插入或发送数据的方法。

这是我的代码:

user_details_page.php

<form action="confirm_page.php" method="post" >
User Name:  
<input  type="text" name="username" >
User Email
<input  type="text" name="useremail" >
Password:  
<input  type="text" name="password" >
<input type="submit"  name="submit" >
</form>

确认页面.php

if (isset($_POST['submit'])) 
{
$user= $_POST['username'];
$email = $_POST['useremail'];
$pass= $_POST['password']; 

mysql_query("INSERT INTO table (username, useremail, email) VALUES ('$username','$useremail','$email');

}

所以每次我刷新确认 page.php 数据都会发送到数据库时出现问题。如何阻止这个?

4

11 回答 11

19

将用户标头到新页面:

if (isset($_POST['submit'])) 
{
  $user= $_POST['username'];
  $email = $_POST['useremail'];
  $pass= $_POST['password']; 

  mysql_query("INSERT INTO table (username, useremail, email) VALUES(`$username','$useremail','$email')");

}
//best outside the if statement so user isn't stuck on a white blank page.
header("location: landing_page.php");
exit;

通过这样做,刷新的用户将刷新landing_page.php,这意味着它不会进行两次插入。

最佳建议:先检查用户是否存在,如果存在,请不要插入!

于 2013-08-07T23:51:18.743 回答
2

这里发生的是,当您刷新页面时,表单被提交了两次。

为了防止这种情况,您可以使用会话:

session_start();

if( $_SESSION['submit'] == $_POST['submit'] && 
     isset($_SESSION['submit'])){
    // user double submitted 
}
else {
    // user submitted once
    $_SESSION['submit'] = $_POST['submit'];        
} 
于 2013-08-07T23:54:21.853 回答
0

我通过使用会话有这个解决方案

<?php session_start();
        if(isset($_POST[$_SESSION[a][count($_SESSION[a])-1]])){
            echo "somthing....";
            unset($_SESSION[a]);
        }
        else{     
                        echo '<form method="post">';
                              $_SESSION["a"]=array();
                              $_SESSION["a"][0]="a".rand(1,100);
                        echo '<input name="'.$_SESSION["a"][0].'"><br>';
                              $_SESSION["a"][1]="a".rand(1,100);
                        echo '<input name="'.$_SESSION["a"][1].'"><br>';
                              $_SESSION["a"][2]="a".rand(1,100);
                        echo '<input name="'.$_SESSION["a"][2].'"><br>';
                              $_SESSION["a"][3]="a".rand(1,100);
                        echo '<input type="submit" name="'.$_SESSION["a"][3].'" value="submit"><br>';
                        echo '</form>';
        }               
?>
于 2013-08-26T22:30:42.037 回答
0

在您的代码中完成插入或更新后,您总是需要重定向到另一个页面。

请参阅此处了解如何执行此操作:如何在 PHP 中进行重定向?

(您想使用 PHP 重定向,而不是 Javascript 或 HTML 重定向,因为您显然确实需要它来工作。)

确认页面应该是您在更新后重定向到的页面,而不是插入的页面。

于 2013-08-07T23:49:30.703 回答
0

防止这种情况的最佳方法是在查询后添加 header('Location: filename') 。因此,在你的情况下,

if (isset($_POST['submit'])) 
{
$user= $_POST['username'];
$email = $_POST['useremail'];
$pass= $_POST['password']; 

mysql_query("INSERT INTO table (username, useremail, email) VALUES ('$username','$useremail','$email');
//must be inside the condition to prevent too many redirects
header('Location: user_details_page.php');
}
于 2013-08-07T23:50:41.007 回答
0

确认页面.php:

if (isset($_POST['submit'])) 
{
$user= $_POST['username'];
$email = $_POST['useremail'];
$pass= $_POST['password']; 

mysql_query("INSERT INTO table (username, useremail, email) VALUES ('$username','$useremail','$email')"); // <-- missing endquote and bracket here

header('Location: somewhere_else.php');
exit;
}
于 2013-08-07T23:50:41.640 回答
0

我面临着同样的问题。试图添加一些数据,每次刷新页面时都会再次添加。发生这种情况是因为页面未加载。为此,您需要添加:

<?php ob_start();?>在您的头文件中,然后将头包含在您正在处理的当前文件中。之后使用下面的代码

    if (isset($_POST['submit'])) 
{
  $user= $_POST['username'];
  $email = $_POST['useremail'];
  $pass= $_POST['password']; 

  mysql_query("INSERT INTO table (username, useremail, email) VALUES(`$username','$useremail','$email')");

//user it before if statement
header("location: onthesamepage/oranyotherpage.php");
}
于 2019-05-09T07:27:45.330 回答
0

快速的方法是将页面重定向到它的当前位置:

if (isset($_POST['submit'])) 
{
//do somthing
header("Location: $current_url");
}
于 2018-11-23T15:25:51.400 回答
0

索引.php

面对同样的问题解决方案 | 如果在值中不使用反引号时使用 () 外部查询,请使用 ' ' 单引号。

<?php 
  include 'connection.php';

 if(isset($_POST['submit'])){
     $username = $_POST['username'];
     $password = $_POST['password'];

    $query = "INSERT INTO`login`(`username`,`password`)
                        VALUES('$username','$password')";  
    $insert_data= mysqli_query( $connection,$query);
     }
   ?>

形式

<form method="post">
      <br><br>
    <div class="card">
        <div class="card-header bg-dark">
            <h1 class="text-white text-center">Insert Opration</h1>
            <h2><a href="display.php">Data</a> </h2>
        </div>
          <label for="username">Username</label>
          <input type="text" name="username" class="form-control"><br>

          <label for="password">Password</label>
          <input type="password" name="password" class="form-control"><br>

          <button class="btn btn-success" name="submit" type="submit">Submit</button> 
    </div>
    </form>
于 2021-05-31T04:24:37.560 回答
0

我们可以在没有重定向的情况下停止它,使用 PHP $_SESSION 的最佳方法如下:

if($_SERVER['REQUEST_METHOD'] == 'POST' && empty($_SESSION['form_submit']) )
{ 
    extract($_POST);
    $sql=""INSERT INTO table (username, useremail, email) VALUES('$username','$useremail','$email')";
    $_SESSION['form_submit']='true'; 
} 
else
 {
    $_SESSION['form_submit']='NULL';
 }
于 2015-11-20T05:13:27.963 回答
-1
if($_POST(submit)
{
 //database insertion query
 // if successful insertion
    {
echo"<script language='javascript'>alert('successfully inserted')</script>";
echo"<script>document.location='your_page.php';</script>;
    }
}
于 2018-04-25T11:44:48.310 回答