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";
}
?>
