Error Selecting User from Data Base!");
}else{
$result = mysql_fetch_array($ok);
}
if($result[0] != "All"){//try again
$loggo = 3;
$logcount = $logcount + 1;
}else{//success
$loggo = 2;
}
}else{//first time
$loggo = 1;
}
?>
if($loggo == 1){//first try
echo("
" .
"Please enter your username and password." .
"
" .
"
");
}
if($loggo == 2){//success
echo("
");
}//success
if($loggo == 3 and $logcount <= 3){// more tries
echo("
" .
"Sorry, there were problems with your Log-in." .
"
" .
"
");
}elseif($loggo == 3 and $logcount > 3){//too many tries
echo("
Sorry. There is a serious problem with your username and password that the system cannot work out." .
"
Please contact Eco-\$mart to correct the problem.
");
exit();
}
?>