使用jquery中的post阻止重复提交

时间:2015-10-05 17:29:15

标签: php jquery

我有一个通过jquery post()通过按钮提交的表单。不幸的是它提交了两次,因此它复制了mysql中的记录。

我有两个文件:register.php(包含html和javascript)和运行sql的tttt.php

我的问题是:如何修改我的脚本以防止双重提交?

请帮帮我。 this is link of the page

register.php的一部分:

<form id="regForm" method="post" action="tttt.php">
<!-- (...) -->
</form>

<script type="text/javascript">
      $("#sub").click(function(){

                     var data=$("#regForm :input").serializeArray();
        var posting = $.post($("#regForm").attr("action"), data, function(info){




             if(info==="yes"){$("#result1").html("ثبت نام انجام شد");}

        else{if(info==="no"){$("#result1").html("ثبت نام  با موفقیت انجام نشد");           }}

        });
        posting.done(function( data ) {

                  if(data==="no"){
                     $('#result1').fadeOut(8000, function() {
                     $(this).empty().show();
                     $("#regForm").submit(function(){
                     return false;});
                                                             });
                                   }  
    else       {
         $('#result1').fadeOut(12000, function() {
         $(this).empty().show();
        $("#regForm").submit(function(){
                       return false;});  
                                                 });
                       $("input:text ").val("");
                    $("input:password ").val("");

    }         


     });
            });

          $("#regForm").submit(function(){
                  return false;

                     });

              </script>

tttt.php的一部分:

   <?php
header("Content-Type: text/plain"); 
require_once("../private/connection.php");





if(isset($_POST["name"])  && !empty($_POST["name"]) && isset($_POST["lastname"]) && !empty($_POST["lastname"]) && isset($_POST["birthday"]) && !empty($_POST["birthday"])&&  isset($_POST["email"]) && !empty($_POST["email"]) && isset( $_POST["password"]) && !empty($_POST["password"]) && isset($_POST["confirmPassword"]) && !empty($_POST["confirmPassword"]) ){

        $name     =$conn->real_escape_string($_POST["name"]);
        $lastname =$conn->real_escape_string($_POST["lastname"]);
        $birthday =$conn->real_escape_string($conn->real_escape_string($_POST["birthday"]);
        $email    =$conn->real_escape_string($_POST["email"]);
        $password =$conn->real_escape_string($_POST["password"]);
        $hashed_password = password_hash($password, PASSWORD_BCRYPT);   



        if ($result=$conn->query("INSERT INTO students (student_name,student_family,student_birthday,student_email,student_password)
VALUES ('$name','$lastname' ,'$birthday' ,'$email','$hashed_password')")) {


            echo "yes";
} 
        else {
    echo "Error: " . $sql . "<br>" . $conn->error;
}




    }else


{  echo "no";}  

        $conn->close();     
    ?>

2 个答案:

答案 0 :(得分:0)

在插入记录之前,如果用户尚不存在,只需检查数据库。通过我看到你的唯一列将是电子邮件和密码哈希。并做一些适当的错误处理。

答案 1 :(得分:0)

将按钮类型更改为按钮

&#13;
&#13;
combinations <- combn(colnames(df),2,function(x) rowMeans(df[x]))
&#13;
&#13;
&#13;