History for < Vérifier la validité d'une adresse email avec php >
Sort by: Date /
Title /
-
// Vérification de la forme
function isEmail($email){
return preg_match("/^(\w|-|\.)+@((\w|-)+\.)+[a-z]{2,6}$/i",
$email)
}
// Domaine valide ?
function isEmailDomaine($email){
return false;
}else{
return true;
}
This posteet has also been saved without any changes by steph, akyrho