0

我创建了一个由 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.');
    }
     } 
4

2 回答 2

0

您必须使用 ajax 执行 php 函数而不刷新页面。 读这个

于 2013-09-29T01:45:00.573 回答
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>
于 2013-09-29T04:06:18.453 回答