如何在表单旁边显示php表单验证错误?

时间:2013-09-29 01:41:55

标签: javascript php

我创建了一个注册表单,该表单由javascript和php验证。无论何时发生任何javascript表单验证错误,如需要用户名,它都会显示在表单旁边,但是当出现任何php验证错误时,如用户名已经存在,它显示在另一个链接上。如何在表单旁边显示php验证错误?

<?php

 include('configdb.php');
 if(isset($_POST['submit']))
 {
 checks if the username is in use

if (!get_magic_quotes_gpc()) {

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

}

 $usercheck = $_POST['username'];

 $sql1 = "SELECT username FROM users WHERE username = '$usercheck'"; 
 $result1 = mysqli_query($mysqli,$sql1) or die(mysqli_error());


//if the name exists it gives an error

if (mysqli_num_rows($result1) != 0) {

    die('Sorry, the username '.$_POST['username'].' is already in use.');
    }
     } 

2 个答案:

答案 0 :(得分:0)

你必须使用ajax来执行php函数而不刷新页面。 Read this

答案 1 :(得分:0)

如果您不想使用ajax,则另一个选项。它可以用PHP完成,但用户需要重新加载页面才能看到错误。

为此,必须将html表单代码和php验证代码放在同一个文件中。

<?php 
    $error = false;
    if(isset($_POST['submit'])){                
        // your validation
            // if something wrong
            $error = true;  
    }
?>
<form action="validation_checking.php" method="post">
    <?php
        if($error)
        { echo '<p style="color:red;">Sorry, the username '.$_POST['username'].' is already in use.</p>'; } 
    ?>
    <input type="text" name="username"> 
    <input type="submit" value="submit">
</form>