Does anyone see an issue with the following IF statement... I sure can't yet it doesn't work!
VARIABLES:
$CHECK = A returned value from the database either "y" or "n", the value is returned successfully so I know that is not the issue here.
There is no error message returned, the IF statement simply refuses to work.
$check = mysql_fetch_row($resultX);
if($check == "y"){
}elseif($check == "n"){
echo "<META HTTP-EQUIV=\"Refresh\" CONTENT=\"0;URL=main.php\">";
}