Skip to content

Instantly share code, notes, and snippets.

@mikeerickson
Created September 14, 2013 20:50
Show Gist options
  • Save mikeerickson/6565523 to your computer and use it in GitHub Desktop.
Save mikeerickson/6565523 to your computer and use it in GitHub Desktop.
/**
*
* PHP validate email
* http://www.webtoolkit.info/
*
**/
 
function isValidEmail($email){
return eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment