Could someone tell me why I'm getting this error message???
Parse error: parse error, expecting T_STRING' orT_VARIABLE' or `T_NUM_STRING' in c:\program files\easyphp1-8\www\login.php on line 28
//check the username and the password according to our database
if($Customer_Password != $users['Customer_UserName']);
{
echo "Password is incorrect, please try again"; //display error
die (); // do nothing else
}
elseif ($Customer_Password == $Customer_UserName['Customer_UserName'])
{
$_SESSION['loggedIn'] = true;
$_SESSION['Customer_UserName'] = $Customer_UserName;
$_SESSION['Customer_Password'] = $Customer_Password;
echo "Logged in sucessfully.<br>";
echo "<a href='http://localhost/signin.php?".SID."'>Please click here to continue</a>";
}
I still need to do a loop as well but this error message is annoying