验证注册表中的数据后,重定向到另一个页面以登录

Posted

技术标签:

【中文标题】验证注册表中的数据后,重定向到另一个页面以登录【英文标题】:after validating data from a registration form, redirect to another page to log in 【发布时间】:2013-11-14 19:16:35 【问题描述】:

我是 phpmysql 的新手。我正在尝试创建用户注册表单,验证数据,然后重定向到登录页面,他们可以在其中输入用户名和密码进行登录。我已经编写了代码,但由于某种原因我无法正确使用 header()。 到目前为止,这是我的代码:

$userErr= $passErr= $passErrc= $firstErr= $lastErr= $middle= $addErr= $cityErr=      $stateErr=$zipErr= $emailErr= $phoneErr= $passMatchErr="";

$userID= $password= $pass_conf= $firstName= $lastName= $middle= $address= $city= $state= $zip= $email= $phone="";


// Validate the form
// use trim() function to remove unnecessary characters such as extra space, tab, newline,
// use stripslashes(() to remove backslashes 
// use htmlspecialchars() for security
function test_input($data)

    $data = trim($data);
    $data = stripslashes($data);
    $data = htmlspecialchars($data);
    return $data;



if ($_SERVER["REQUEST_METHOD"] == "POST")

    // validating the form to see all required fields are entered
    if (empty($_POST["userID"]))
    
        $userErr = "User ID is required";
    
    else
    
        $userID = test_input($_POST["userID"]);
    

    if (empty($_POST["password"]))
    
        $passErr = "Password is required";
    
    else
    
        $password = test_input($_POST["password"]);
    
    if (empty($_POST["pass_conf"]))
    
        $passErrc = "Confirm your password";
    
    else
    
        $pass_conf = test_input($_POST["pass_conf"]);
    

    if (empty($_POST["firstName"]))
    
        $firstErr = "First Name is required";
    
    else
    
        $firstName = test_input($_POST["firstName"]);
    

    if (empty($_POST["lastName"]))
    
        $lastErr = "Last Name is required";
    
    else
    
        $lastName = test_input($_POST["lastName"]);
    
    if (empty($_POST["middle"]))
    
        $middle = "";
    
    else
    
        $middle= test_input($_POST["middle"]);
    
    if (empty($_POST["address"]))
    
        $addErr = "Address is required";
    
    else
    
        $address = test_input($_POST["address"]);
    
    if (empty($_POST["city"]))
    
        $cityErr = "City is required";
    
    else
    
        $city = test_input($_POST["city"]);
    
    if (empty($_POST["state"]))
    
        $stateErr = "State is required";
    
    else
    
        $state = test_input($_POST["state"]);
    
    if (empty($_POST["zip"]))
    
        $zipErr = "Zip is required";
    
    else
    
        $zip = test_input($_POST["zip"]);
    
    if (empty($_POST["email"]))
    
        $emailErr = "Email is required";
    
    else
    
        $email = test_input($_POST["email"]);
    
    if (empty($_POST["phone"]))
    
        $phoneErr = "";
    
    else
    
        $phone = test_input($_POST["phone"]);
    
   
else

    if($password != $pass_conf)
        $passMathErr= "Passwords do not match. Please, go back and re-enter the passwords!";
        // die($passMathErr);
     else
        // perform sql query to insert the data
        $sql="insert into users values('$userID', '$password', '$firstName', '$lastName', '$middle', '$address', '$city', '$state', '$zip', '$email', '$phone')";
        $result=mysql_query($sql, $connection);
        header("Location:login.html");
    

?>  

<html lang="em">
<head>
    <title> Registration </title>
    <style type="text/css">
        h1
            text-align: left;
            font-weight:bold;
            font-size: 2em;
            color:#FFFF99;
            word-spacing: 0.3em;
            letter-spacing:0.1em;
            text-decoration:underline;
        
        body
            background-color: #421818;
        
        .txtinput
            margin-left:150px;
        
        table
            font-color:#99FF00;
        
        .error 
            color: #FF0000;
        
    </style>
</head>
<body>
    <h1> Registration Form </h1><br>
    <form name="reg" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" method="post">
        <table style="color:#99FF00" border=0 cellspacing=0 cellpadding=2>
            <tr>
                <td>User ID * <td><input type="text" name="userID"/>
                <span class="error"><?php echo $userErr;?></span>
            </tr>
            <tr>
                <td>Password *<td><input type="password" name="password" />
                <span class="error"><?php echo $passErr;?></span>
            </tr>
            <tr>
                <td>Confirm Password *<td><input type="password" name="pass_conf" />
                <span class="error"><?php echo $passErrc;?></span>
            </tr>
            <tr>
                <td>First Name *<td><input type="text" name="firstName" />
                <span class="error"><?php echo $firstErr;?></span>
            </tr>
            <tr>
                <td>Last Name *<td><input type="text" name="lastName" />
                <span class="error"><?php echo $lastErr;?></span>
            </tr>
            <tr>
                <td>Middle<td><input type="text" name="middle" />
                <span class="error"><?php echo $middle;?></span>
            </tr>
            <tr>
                <td>Address *<td><input type="text" name="address" />
                <span class="error"><?php echo $addErr;?></span>
            </tr>
            <tr>
                <td>City *<td><input type="text" name="city" />
                <span class="error"><?php echo $cityErr;?></span>
            </tr>
            <tr>
                <td>State *<td><input type="text" name="state" />
                <span class="error"><?php echo $cityErr;?></span>
            </tr>
            <tr>
                <td>Zip *<td><input type="text" name="zip" />
                <span class="error"><?php echo $zipErr;?></span>
            </tr>
            <tr>
                <td>Email *<td><input type="text" name="email"/> 
                <span class="error"><?php echo $emailErr;?></span>
            </tr>
            <tr>
                <td>Phone<td><input type="text" name="phone" />
                <span class="error"><?php echo $phone;?></span>
            </tr>
        </table>
        <div class="txtinput">
            <input type="submit" name="submit" value="Register"/>   
        </div>
    </form>
</body>
</html>

【问题讨论】:

位置后的空格:也许? 我试过了,数据被插入到数据库中,但仍然没有指向我的登录页面。它一直显示注册文件 没有。但是在你的 header 命令之前的任何输出都会。检查您的 之前或之后是否没有空格?> 包含文件中的标签。 (结束后甚至没有换行符?>) 【参考方案1】:

一旦控件转移到另一个页面,您必须退出代码段。否则将执行以下代码。所以在 header() 之后使用exit;

header("Location:login.html");
exit;

【讨论】:

我添加了它,但由于某种原因它仍然无法正常工作。我之前发布的所有内容都保存在文件“reg.php”中,我应该将 php 代码和 html 代码分成单独的文件吗?这可能是个问题吗? 没有。那不会伤害它。将您的 php 与 html 分开只会使您的代码结构更清晰、更易于管理。【参考方案2】:

我可能是错的,但看看你的 if/else 语句的结构,看起来你只会在请求方法不是 POST 时发送标头。 (即。看起来它在 else 部分。)我认为它在错误的地方。

这是我认为需要删除的其他内容。 (虽然我不确定您的验证如何使用您当前的代码停止重定向)

$phone = test_input($_POST["phone"]); 别的 如果($密码!= $pass_conf)

【讨论】:

我已经尝试了两天了。有没有另一种方法来解决这个问题?也许我正在编写冗长的代码,并使其比需要的更复杂。我尝试更改 if/else 语句,但仍然没有重定向到登录页面 明天我可能会为您提供一些建议。我现在不在我的电脑前,我的手机很辛苦。 :P 当然没问题。我真的很感谢你抽出一些时间来帮助我。我对这一切都很陌生,试图以我的方式解决 php $ sql。只是让你知道,我在文件的开头有 include("dbConfig.php"),不确定这是否会阻碍 header() 的执行。【参考方案3】:

尝试使用 ob_start();在文件的顶部和 o​​b_end_flush();在文件的底部。

【讨论】:

您确定这可行还是建议?如果是后者,最好作为评论。 我没有测试过。在这种情况下,我们不想担心文件内容中的任何空白或新行,因为在调用标头重定向时,输出缓冲区将忽略所有 html 输出。 我使用了出口;在标题调用之后,现在当我进入注册页面时,它甚至没有显示表单,它立即重定向到登录页面。根据上面的代码,我会在哪里放置 ob_start() 函数? ob_start() 在 之前 现在标头重定向工作正常。现在发生的情况是,当您尝试访问请求类型为 GET 的页面时,将执行 if ($_SERVER["REQUEST_METHOD"] == "POST") 的其他情况, $password == $pass_conf 所以代码块带有标头重定向的作品,它会立即重定向到登录。理想情况下,表单应该出现在 "if ($_SERVER["REQUEST_METHOD"] == "POST")" 的 else 情况下【参考方案4】:

好的,您说您的数据正常进入数据库,但您的 header() 无法重定向。 发生这种情况的唯一方法是在 header() 发生之前回显某些字符。

确保在 header() 之前没有打印任何内容。 确保页面开头没有 BOM 元素。

【讨论】:

【参考方案5】:

只需删除 main if 语句的 else 部分和放在 main if 语句中的密码确认部分:

if ($_SERVER["REQUEST_METHOD"] == "POST")

  some coce

//""""
else

    if($password != $pass_conf)
        $passMathErr= "Passwords do not match. Please, go back and re-enter the passwords!";
        // die($passMathErr);
     else
        $sql="insert into users values('$userID', '$password', '$firstName', '$lastName', '$middle', '$address', '$city', '$state', '$zip', '$email', '$phone')";
        $result=mysql_query($sql, $connection);
        header("Location:login.html");
    
 //"""
if ($_SERVER["REQUEST_METHOD"] == "POST")

  some coce

//""""
else

    if($password != $pass_conf)
        $passMathErr= "Passwords do not match. Please, go back and re-enter the passwords!";
        // die($passMathErr);
     else
        // perform sql query to insert the data
        $sql="insert into users values('$userID', '$password', '$firstName', '$lastName', '$middle', '$address', '$city', '$state', '$zip', '$email', '$phone')";
        $result=mysql_query($sql, $connection);
        header("Location:login.html");
    
 //"""
        // perform sql query to insert the data

删除上面的“”部分并将其添加到main if语句中

【讨论】:

【参考方案6】:

用这个替换你的代码....

if ($_SERVER["REQUEST_METHOD"] == "POST")

    // validating the form to see all required fields are entered
    if (empty($_POST["userID"]))
    
        $userErr = "User ID is required";
    
    else
    
        $userID = test_input($_POST["userID"]);
    

    if (empty($_POST["password"]))
    
        $passErr = "Password is required";
    
    else
    
        $password = test_input($_POST["password"]);
    
    if (empty($_POST["pass_conf"]))
    
        $passErrc = "Confirm your password";
    
    else
    
        $pass_conf = test_input($_POST["pass_conf"]);
    

    if (empty($_POST["firstName"]))
    
        $firstErr = "First Name is required";
    
    else
    
        $firstName = test_input($_POST["firstName"]);
    

    if (empty($_POST["lastName"]))
    
        $lastErr = "Last Name is required";
    
    else
    
        $lastName = test_input($_POST["lastName"]);
    
    if (empty($_POST["middle"]))
    
        $middle = "";
    
    else
    
        $middle= test_input($_POST["middle"]);
    
    if (empty($_POST["address"]))
    
        $addErr = "Address is required";
    
    else
    
        $address = test_input($_POST["address"]);
    
    if (empty($_POST["city"]))
    
        $cityErr = "City is required";
    
    else
    
        $city = test_input($_POST["city"]);
    
    if (empty($_POST["state"]))
    
        $stateErr = "State is required";
    
    else
    
        $state = test_input($_POST["state"]);
    
    if (empty($_POST["zip"]))
    
        $zipErr = "Zip is required";
    
    else
    
        $zip = test_input($_POST["zip"]);
    
    if (empty($_POST["email"]))
    
        $emailErr = "Email is required";
    
    else
    
        $email = test_input($_POST["email"]);
    
    if (empty($_POST["phone"]))
    
        $phoneErr = "";
    
    else
    
        $phone = test_input($_POST["phone"]);
    
    if($password != $pass_conf)
        $passMathErr= "Passwords do not match. Please, go back and re-enter the passwords!";
        // die($passMathErr);
     else
        // perform sql query to insert the data
        $sql="insert into users values('$userID', '$password', '$firstName', '$lastName', '$middle', '$address', '$city', '$state', '$zip', '$email', '$phone')";
        $result=mysql_query($sql, $connection);
        header("Location: login.html");
    

?>

错误是 - 只有当 REQUESTED 方法不等于 POST

所以如果请求方法是 POST 并且输入的密码与确认密码匹配,则执行上述代码,然后将用户重定向到登录页面。它现在可以工作了!

【讨论】:

【参考方案7】:

把你的标题(“位置:login.html”);在 if ($_SERVER["REQUEST_METHOD"] == "POST") 而不是这个 if 语句的 else 部分。

【讨论】:

以上是关于验证注册表中的数据后,重定向到另一个页面以登录的主要内容,如果未能解决你的问题,请参考以下文章

Nuxt.js:如何重定向内部方法

成功登录后重定向或在下一个身份验证中注册凭据类型

使用javascript登录firebase后如何重定向到另一个页面?

Laravel 5.5登录后重定向到特定路由

在 React 中登录/注册后重定向到邀请链接

登录后 Laravel 基本身份验证重定向到 HTTPS 路由