Código PHP:
$email_check = "SELECT email FROM cliente WHERE email = '$email'"; // check if username exists in database.
if (!($email_check)) print mysql_error();
$result = mysql_query($email_check);
$num_rows = mysql_num_rows($result);
if ($num_rows != 0)
{
echo "<font color='#FF0000'><b>Error insertando usuario</b></font><br><font color='red'> El email ".$_POST['email']." ya existe, por favor intente con otro</font>";
exit();
}
saludos