Hi
I'm working on a registration system and I've faced a problem with checking if the email is already inthedatabase
this is my checking code
$sql = "SELECT * FROM users WHERE email='".$email."'";
$result = mysql_query($sql);
$row1 = mysql_fetch_assoc($result);
$row1['email'];
if($email = $row1['email'])
the problem is that when I put any email that is not in the database it show me an error that this email is already registerd!