Estoy modificando una aplicación y existe un punto en donde el usuario se identifica, si no existe el email en la bd devuelve un error:
Código PHP:
//Check to see if our user exists
$_query="SELECT * FROM users WHERE `email`='$username' and `password`=
'$password'";
$handle=mysql_query($_query) or die(mysql_error());
$handle_array=mysql_fetch_array($handle);
$handle_count=mysql_num_rows($handle);
if($handle_array["validated"] != "1")
{
die("Email error, Please check your email and try again.");
}
gracias por adelantado