javascript和php中的重定向问题

时间:2013-03-23 18:52:30

标签: php javascript modal-dialog

我是php和javascript的新手。我在第一个php文件中编写了一个模态对话框打开脚本,用于创建新用户帐户。在模态窗口中获取有效输入后,我通过post方法将信息发送到第二个php页面将数据插入数据库。

现在有问题。在第二个php页面中有一个方法来检查数据库中是否已存在电子邮件地址然后显示错误,否则将数据插入数据库并重定向到第3个php页面。

但是无法编写相同的逻辑。请指导我编写逻辑,如果在第二页中,电子邮件检查方法返回true,则在成功将数据重定向插入第3页后显示错误。

请找到下面的代码段

第二个php和第三个php在同一个文件夹中.head()部分不工作,需要显示第二页验证的错误。 第一个PHP的大部分代码是javascript和html form.from那里我正在做帖子到第二页

        **1st php**

 <script>       
                $("#dialog-form").dialog({
                    autoOpen: false,
                    height: 300,
                    width: 350,
                    modal: true,
                    buttons: {
                        "Create an account": function() {
                            var bValid = true;
                            allFields.removeClass("ui-state-error");
                            bValid = bValid && checkLength(email, "email", 6, 80);
                            bValid = bValid && checkLength(password, "password", 5, 16);
                            bValid = bValid && checkLength(confirmpassword, "confirmpassword", 3, 16);
                            bValid = bValid && checkRegexp(email, .....);
                            bValid = bValid && checkRegexp(password, /^([0-9a-zA-Z])+$/, "Password field only allow : a-z 0-9");
                            bValid = bValid && IsEqual(password, confirmpassword, "password & confirmpassword are not equal");
                            if (bValid) {
                                $.ajax({
                                    type: "POST",
                                    url: "./create_account.php?act=create",
                                    data: "&email=" + email.val() + "&password=" + password.val() + "&confirmpassword=" + confirmpassword.val(),
                                    success: function(data) {

                                    }
                                });
                                $(this).dialog("close");
                            }
                        },
                        Cancel: function() {
                            $(this).dialog("close");
                        }
                    },
                    close: function() {
                        allFields.val("").removeClass("ui-state-error");
                    }
                });
                $("#create-user")
                        .button()
                        .click(function() {
                    $("#dialog-form").dialog("open");
                });
            });
        </script>
        <div id="dialog-form" title="Create new user">
            <p class="validateTips">All form fields are required.</p>
            <form>
                <fieldset>
                    <label for="email">Email</label>
                    <input type="text" name="email" id="email" value="" class="text ui-widget-content ui-corner-all" />
                    <label for="password">Password</label>
                    <input type="password" name="password" id="password" value="" class="text ui-widget-content ui-corner-all" />
                    <label for="confirmpassword">confirm password</label>
                    <input type="password" name="confirmpassword" id="confirmpassword" class="text ui-widget-content ui-corner-all" />
                </fieldset>
            </form>
        </div>


    **2nd php**

    <?php

    $action = $_GET['act'];

    if(!empty($_POST['email'])&&($_POST['password'])&&($_POST['confirmpassword'])) {


        $email_address = tep_db_prepare_input($HTTP_POST_VARS['email']);
        $password = tep_db_prepare_input($HTTP_POST_VARS['password']);
        $confirmpassword = tep_db_prepare_input($HTTP_POST_VARS['confirmpassword']);

        $error = false;

      {
            $db = new mysql("root", "", "modal_db", "localhost");
            $email_query_status ="select count(*) as total from " . CUSTOMERS . " where customers_email_address = $email_address ;
            $check_email = mysql($email_query_status );
            if ($check_email['total'] > 0) {
                $error = true;
            }
        }
        if ($error == false) {
            $db->query("INSERT INTO user_info SET customers_email_address ='$email_address', password='$pword'");
            header('Location: 3rd.php');


        }
    }
    ?>




        Thanks in advance, 

        Debasis

1 个答案:

答案 0 :(得分:0)

“检查数据库中是否已存在电子邮件地址,然后显示错误,否则将数据插入数据库并重定向到第3个php页面。”

  • “SELECT * FROM table WHERE email =:email”;
  • 如果结果为true,则电子邮件已存在,您可以创建错误消息。
  • 如果结果为false,则插入。
  • 然后您可以使用

    标题(“位置:index.php”);

使用PHP重定向。