简体   繁体   中英

ajax login success data but not redirect to index page

i want to validate login form using ajax success response is working but if all goods it should be redirect to index page but it's not working , i don't understand what's wrong please help. thanks in advance..

$(document).ready(function(){
       var response;
        $('#submit').click(function(e){
        e.preventDefault();
        $('.alert-box').html('<div id="loading" style="margin: 0 auto;" > 
        </div>');
        var action = 'ajax_validation';
        var username = $('#username').val();
        var password = $('#password').val();
        $.ajax({
            url:"do_login.php",
            method:"POST",
            data:{action:action, username:username, password:password},
            success:function(data){
              response = data;
              if(response === 1){
                window.location.href = "http://stackoverflow.com";
              }else{
                $('.alert-box').addClass("alert alert-warning");
                $('.alert-box').html(response);
              }
                }
            });
       });
    });

above these ajax request this is action page code include('includes/db.php');

if(isset($_POST["action"])){

    $check_username = $_POST['username'];
    $check_password = $_POST['password'];

    if(empty($check_username) && empty($check_password)){
        echo "Please fill all field";
    }else{
        $query = "SELECT * FROM user WHERE email = '{$check_username}' AND password = '{$check_password}' ";  
        $select_query=mysqli_query($connection,$query);

        if(!$select_query){
        die("QUERY FAILED".mysqli_error($select_query));
        }

        if(mysqli_num_rows($select_query)==0){
            echo "Username or password are incorrect!";
        }else{
            while ($row=mysqli_fetch_assoc($select_query)) {
                $_SESSION['username'] = $row['email'];
                echo $row['email'];
            }
        }
    }

  }

In your resposne you are echoing

 echo $row['email'];

This should be:

 echo 1;

Your problem is that you are checking if value is 1 in ajax:

success:function(data){
      response = data;
      if(response === 1){ //<- there you are checking if your echo is 1 but you are trying to echo $row['email']; 
         window.location.href = "http://stackoverflow.com";
      }else{
         $('.alert-box').addClass("alert alert-warning");
         $('.alert-box').html(response);
      }
 }

change your echo from $row['email'] to 1

I think that the problem is response checking condition in ajax success. You're checking if a string (email or error message) is equal and the same type of 1.

...
dataType: 'json',
success:function(data){
              response = data;
              if(response === 1){
...

You can use a json response with status/error code:

...
success:function(data){
              response = JSON.parse(data);
              if(response.status === 1){
                window.location.href = "http://stackoverflow.com";
              }else{
                $('.alert-box').addClass("alert alert-warning");
                $('.alert-box').html(response.data);
              }
                }
...
$check_username = $_POST['username'];
$check_password = $_POST['password'];
$res = array('status'=> 0, 'data' => '');
if(empty($check_username) && empty($check_password)){
    $res['status'] = 0;
    $res['data'] = "Please fill all field";
}else{
    $query = "SELECT * FROM user WHERE email = '{$check_username}' AND password = '{$check_password}' ";  
    $select_query=mysqli_query($connection,$query);

    if(!$select_query){
      $res['status'] = 0;
      $res['data'] = "QUERY FAILED".mysqli_error($select_query);
      echo json_encode($res);
      return;
    }

    if(mysqli_num_rows($select_query)==0){
      $res['status'] = 0;
      $res['data'] = "Username or password are incorrect!";
    }else{
        while ($row=mysqli_fetch_assoc($select_query)) {
            $_SESSION['username'] = $row['email'];
            $res['status'] = 1;
            $res['data'] = "".$row['email'];
        }
    }
}
echo json_encode($res);

In addition i suggest to put only the username in query where condition and check if the password match with php.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM