Skip to content

Instantly share code, notes, and snippets.

@tmbritton
Created June 15, 2013 05:14
Show Gist options
  • Save tmbritton/5786995 to your computer and use it in GitHub Desktop.
Save tmbritton/5786995 to your computer and use it in GitHub Desktop.
Validate Email Address - PHP
function validate_email($email) {
$filtered = filter_var($email, FILTER_VALIDATE_EMAIL);
if ($filtered == $email) {
return TRUE;
}
return FALSE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment