PHP在另一页面上显示错误

时间:2014-02-26 07:28:33

标签: php regex validation

这是我的剧本。我希望在字段为空时以及与正则表达式不匹配时打印错误。但是当我提交表单时,错误显示在另一页面上。我想分别在表单字段下面的同一页面上显示错误。

<?php 

    //Connects to your Database 
     mysql_connect("localhost", "root", "") or die(mysql_error()); 
     mysql_select_db("login") or die(mysql_error()); 


     //Checks if there is a login cookie
     if(isset($_COOKIE['ID_my_site']))


     //if there is, it logs you in and directes you to the members page
     { 
        $username = $_COOKIE['ID_my_site']; 

        $pass = $_COOKIE['Key_my_site'];

            $check = mysql_query("SELECT * FROM users WHERE username = '$username'")or die(mysql_error());

        while($info = mysql_fetch_array( $check ))  
            {
            if ($pass != $info['password']) 

                {
                            }
            else
                {

                header("Location: members.php");
                }
            }
     }


     //if the login form is submitted 

     if (isset($_POST['submit'])) { // if form has been submitted



     // makes sure they filled it in

        if(!$_POST['username'] | !$_POST['pass']) {

            die('You did not fill in a required field.');

        }

        // checks it against the database

        if (!get_magic_quotes_gpc()) {

            $_POST['email'] = addslashes($_POST['email']);

        }

        $check = mysql_query("SELECT * FROM users WHERE username = '".$_POST['username']."'")or die(mysql_error());

     //Gives error if user dosen't exist

     $check2 = mysql_num_rows($check);

     if ($check2 == 0) {

            die('That user does not exist in our database. <a href=add.php>Click Here to Register</a>');
                    }

     while($info = mysql_fetch_array( $check ))     
     {

     $_POST['pass'] = stripslashes($_POST['pass']);

        $info['password'] = stripslashes($info['password']);

        $_POST['pass'] = md5($_POST['pass']);

     //gives error if the password is wrong

        if ($_POST['pass'] != $info['password']) {

            die('Incorrect password, please try again.');

        }
     else 
     { 

     // if login is ok then we add a cookie 

    $_POST['username'] = stripslashes($_POST['username']); 
    $hour = time() + 3600; 
    setcookie(ID_my_site, $_POST['username'], $hour); 
    setcookie(Key_my_site, $_POST['pass'], $hour);   

    //then redirect them to the members area 
    header("Location: members.php"); 
     } 
    } 
    } 

    else 

    {    

     // if they are not logged in 

     ?>

<form action="<?php echo $_SERVER['PHP_SELF']?>" method="post">
  <table border="0">
    <tr>
      <td colspan=2><h1>Login</h1></td>
    </tr>
    <tr>
      <td>Username:</td>
      <td><input type="text" name="username" maxlength="40">
      </td>
    </tr>
    <tr>
      <td>Password:</td>
      <td><input type="password" name="pass" maxlength="50">
      </td>
    </tr>
    <tr>
      <td colspan="2" align="right"><input type="submit" name="submit" value="Login">
      </td>
    </tr>
  </table>
</form>
<?php 

     } 

     ?>

我是初学者。任何帮助或建议将不胜感激。我也是stackoverflow的新手。因此,如果我的问题很糟糕或格式不正确,请提出一些提示。

3 个答案:

答案 0 :(得分:0)

有很多方法可以解决这个问题。

1)如果您只需要在PHP中完成验证,那么错误也会重新显示表单以及错误消息。

2)您可以使用Ajax进行验证,如果没有重新加载页面则显示错误。

3)您可以添加javascript验证以及PHP(服务器)验证。

答案 1 :(得分:0)

您可以通过两种方式实现这一目标:

==编辑==

我没有对此进行测试,因此可能会出现一些错误:)

使用页面重新加载:

将表单的action属性设置为''或将其设置为当前页面(或简单地省略它)。

例如:<form method="post" action="">

这意味着当用户提交表单时页面将重新加载,但数据将被发送到用户已经使用的同一页面(在这种情况下,您的验证也应该在这里)。

第二种(更优雅的方式)是使用AJAX发送表单并根据结果集显示任何错误。为此你可能想要使用jQuery,因为它真的简化了发送表单数据和处理返回值。你可以在http://jquery.com/获得jQuery。

html:

<form id="myForm">
    <!-- Your inputs here -->
    <input type="submit" value="Submit this form! />
</form>

这就是你的JavaScript会是什么样的(别忘了包含jQuery!):

$('#myFormId').submit(function(){

    // Submit the form using AJAX and expect a JSON return value
    $.post('my_validation_file.php', $(this).serialize(), function(result) {

        if (result != 'success') {
            // Set an error class on all fields that failed
            // according to our resultset
            for (var i in result) {
                $('[name="' + result[i] + '"]').addClass('error');
            }
        }
    }, 'json');

    // This prevents the form from submitting
    // and thus reloading your page!
    return false;
});

PHP文件和验证的简化版本(注意:php 5.4+语法!)

<?php

$errorFields = [];
$result = '';

if (empty($_POST['email'])) {
    $errorFields[] = 'email';
}

$result = count($errorFields) ? $errorFields : 'success';

die(json_encode($resrult));

答案 2 :(得分:-1)

尝试将exit;功能放在header之后......