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.

Below is the php code. It compares data from the form and with database values.

However when I click the login button it doesn't do anything?

mysql_connect($host, $databaseUsername, $databasePassword) or die(mysql_error());
mysql_select_db("login") or die(mysql_error());;

$uname = $_POST['inputEmail'];
$pword = $_POST['inputPassword'];

$result = mysql_query("SELECT * FROM login 
WHERE Usernames='$uname' AND Passowrds='$pword'");

if ($row = mysql_fetch_array($result))
{
  echo "correct login information";
} else {
  echo "wrong login information";
}
?>
share|improve this question

2 Answers

up vote 0 down vote accepted

try to check if mysql returns any error then check the count of the returned data

if($result = mysql_query("SELECT * FROM login WHERE Usernames='$uname' AND Passowrds='$pword'")){
// $result != false
// count the returned data
echo mysql_num_rows($result);
}
else{
// call mysql_error(); to print out mysql error
echo mysql_error();
}
share|improve this answer

You are using mysql incorrectly. Use mysqli or PDO with prepared statements beside this you have typo in your query string and i think your environment doesn't send any error messages so turn on error reporting and then you will see what is the problem.

share|improve this answer

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.