Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
$mysqli = mysqli_connect("localhost", "root", "pass", "test");

function check_login($mail,$pwd){   
    global  $mysqli;    
    if($stmt=  $mysqli->prepare('SELECT COUNT(*) FROM `users` WHERE mail = ? AND pwd = MD5(?)')){
        $stmt->bind_param("ss", $mail, $pwd);       
        $stmt->execute();
        $stmt->bind_result($count);
        $stmt->close();
        var_dump($count);
    }
    return ($count > 0 ? true : false);
}

check_login('test@gmail.com','pass');

I have write this script by seeing some script on stackoverflow.I tried to run it and found that $count is NULL after script execute.

I want to know why this is not worked for me. I have tried to run same command on Mysql and it's show me result.

someone help me on it..

share|improve this question
I can see something like "Commands out of sync; you can't run this command now" – user1814971 Nov 24 '12 at 4:20
1  
See php.net/manual/en/mysqli-stmt.bind-result.php - you also need to issue a fetch() call before the variable will be populated. – mario Nov 24 '12 at 4:23
@mario thanks dear, this is working for me now. – user1814971 Nov 24 '12 at 4:26

2 Answers

up vote 1 down vote accepted

mysqli::bind_result needs to be invoked after the ->execute and before the ->fetch call. The fetch() isn't optional, as the (bound result) variable reference is merely an alternative to extracting the result row manually.

So in your code:

    $stmt->execute();
    $stmt->bind_result($count);
    $stmt->fetch();  // result array thrown away
share|improve this answer

First, you shouldn't just copy and paste codes, especially ones that require messing with the database; understand what the code is trying to achieve, then, write yours.
Second, replace

 
  'SELECT COUNT(*) FROM `users` WHERE mail = ? AND pwd = MD5(?)'
 

with

 
 'SELECT COUNT(*) FROM `users` WHERE mail =? AND pwd =?'
 

There's a chance the code didn't run because your passwords were stored in a plaintext on the database.
Let us know if that works.

share|improve this answer
Thanks for your help, no, I have run test script for learn and use MD5 for hash the password. it's working already. – user1814971 Nov 24 '12 at 4:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.