I try to fix it, but i just can not see where the problem is? somebody help me please! Thank you so much
function user_exists($email){
$email = mysql_real_escape_string($email);
$query = mysql_query("SELECT COUNT('user_id') FROM 'users' WHERE 'email'='$email'");
return (mysql_result($query, 0) == 1 ) ? true:false; //this is line 26
}
?>