2

これはphpのコードです

    <?php session_start();

 //Connect to database from here
    $link = mysql_connect('****', '****', '****'); 
    if (!$link) {
        die('Could not connect: ' . mysql_error());
    }
    //select the database | Change the name of database from here
    mysql_select_db('****'); 

//get the posted values
$user_name=htmlspecialchars($_GET['user_name'],ENT_QUOTES);
$pass=$_GET['password'];

//now validating the username and password
$sql="SELECT user_name, password FROM tbl_user WHERE user_name='".$user_name."'";
$result=mysql_query($sql);
$row=mysql_fetch_array($result);

//if username exists
if(mysql_num_rows($result)>0)
{
    //compare the password
    if(strcmp($row['password'],$pass)==0)
    {
        // Return success message
        $message = array("flag" => "1", "msg" => "Login successfully.");
        echo json_encode($message);
         //Regenerate session ID to prevent session fixation attacks
        //session_regenerate_id();


        //now set the session from here if needed
        //$_SESSION['u_name']=$user_name; 
        //$member=mysql_fetch_assoc($result);
        //$_SESSION['u_id']=$member['id'];
        //$name_show=$member['first_name'].' '.$member['last_name'];
        //$_SESSION['name']=$name_show;
            //Write session to disc
            //session_write_close();

        }
    else
        // Return error message
        $message = array("flag" => "0", "msg" => "Incorrect password.");
        echo json_encode($message);
}
else    //if username not exists
{       // Return error message
        $message = array("flag" => "0", "msg" => "Incorrect id.");
        echo json_encode($message);
}
mysql_close($link);     
?>

これはhtmlのコードです

                  $.ajax({
                type: "get",
                url: "http://mydomain.com/ajax_login.php",
                data: {
                    user_name: $("#username").val(),
                    password: $("#password").val()
                },
                success: function(jsondata){

                    if (jsondata.flag == "0"){
                         //if flag is 0, indicate login fail
                    }
                    else {
                         //if flag is 1, indicate login success and redirect to another page
                        window.location.href = 'ABC.html';
                    }                       
                },
                datatype: "json"
            });

ディスプレイショー"{\"flag\":\"0\",\"msg\":\"Incorrect id.\"}"

私の質問は、フラグが 0 でも ABC.html に移動するということです。フラグが 0 の場合、if 句を変更して、フラグが 0 の場合でも句の真の部分に残るようにする必要がありますか??

編集済みこれはコーディングの詳細です

4

2 に答える 2

1

jQuery ajax メソッドでajax 呼び出しを構成dataType: "json"し、PHP 応答で JSON ヘッダーを送信するようにしてください。

header("Cache-Control: no-cache, must-revalidate");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
header("Content-type: application/json");
echo json_encode($yourArray);

ajax 呼び出しを正しく設定しないと、結果が単純な文字列として解釈される可能性があります。

于 2013-03-13T22:17:10.990 に答える
1

おそらくjsondata.flag未定義です。
JS オブジェクトとして使用するには、応答文字列をデコードする必要があります。
または設定dataType : 'json'...

于 2013-03-13T22:16:24.467 に答える