Skip to content

Instantly share code, notes, and snippets.

@shahidulislamus
Created August 23, 2015 15:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shahidulislamus/ac04f03e772164bb1bb5 to your computer and use it in GitHub Desktop.
Save shahidulislamus/ac04f03e772164bb1bb5 to your computer and use it in GitHub Desktop.
if (ronymail($u_email)){
echo '<p>valide.</p>';
}
else{
echo '<p>not valid</p>';
}
function ronymail($adresse) {
$Syntaxe = '#^[\w.-]+@[\w.-]+\.[a-zA-Z]{2,6}$#';
if (preg_match($Syntaxe, $adresse)){
return true;
}
else{
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment