0

#username_inputそのphpスクリプトが返す値に応じて表示したい。if 条件が機能していないようです。

JavaScript:

$(document).ready(function () {
        $('#username_input').keyup(function () {
            $.post('header/check_username.php', {
                    username: form.username.value
                },
                function (result_username) {
                    if (result_username == 'a') {

                        $('#feedback_username').html('choose a username').show();
                    }
                    if (result_username == 'b') {
                        $('#feedback_username').html('Too short').show();
                    }

                });
        }); 

HTML:

<form id="registeration_form" name="form" onsubmit="return hello()" >
    <table>
        <tr>
            <td>Username </td>
            <td><input type="text" id="username_input" name="username" autofucus/></td>
            <td><span id="feedback_username"></span></td>
            <br/><br/>
        <tr>
            <td>Password </td>
            <td><input type="password" id="password_input" name="password"/></td>
        </tr>
        <br/><br/>
        <tr>
            <td>Confirm Password</td>
            <td><input type="password" id="password_confirm" name="password_confirm"/></td>
            <td><span id="feedback_password"></span></td>
        </tr>
        <br/><br/>
        <tr>
            <td>Email </td>
            <td><input type="text" id= "email_input" name="email" /></td>
        </tr>
    </table>
    <center><input type="submit" x value="Register"/></center>
    <br/>
    <div id= "onsubmit_feedback"></div>
    <center><a href="javascript:register('hide');">close</a></center>
</form>

aユーザー名が空でb、ユーザー名が 6 文字未満の場合に返されます。

PHP:

<?php
$con = mysqli_connect("localhost:3306", "root", "", "project_new");
if (mysqli_connect_errno($con)) {

    echo "Unsuccessful" . mysqli_connect_error();
    exit();
}

@$username      = mysqli_real_escape_string($con, trim($_POST['username']));
$check          = mysqli_query($con, "select u from users where u ='$username'");
$check_num_rows = mysqli_num_rows($check);

if ($username == NULL)
    retutn 'a';
    //echo "choose a username";
else if (strlen($username) <= 5)
    return 'b';
    //echo "Too Short. Minimum 6 characters";
else {
    if ($check_num_rows == 0)
        echo "Available :)";
    else if ($check_num_rows == 1)
        echo "Not Available :( ";

}

?>
4

2 に答える 2

0

次の2行で、私が見つけた2つの問題(コメントで@Fredによってすでに言及されているもの):

if ($username==NULL)
    retutn 'a';

まず、$usernamenull になることはありません。 mysqli_real_escape_string文字列を返します。2行目retutn 'a'は、フレッドが示唆したように、おそらくタイプミスです。

これらの行を次のように変更してみてください。

if (empty($username))
    echo 'a';
于 2013-07-27T06:52:47.560 に答える