Help is need.
I had the script to confirm if an email adress is correct:
if (eregi("([a-z]|[0-9]|.|-|)+@([a-z]|[0-9]|.|-|)+.([a-z]|[0-9]){2,3}$", $eamil) && !eregi("(@.*@)|(..)|(@.)|(.@)|(.)", $email))
{
}else{
$err = true;
$err_msg .= "E-mail adresss $email not valid.";
}
But i need to see if the email exist.