Skip to content

Instantly share code, notes, and snippets.

@zachbrowne
Created October 31, 2011 06:48
Show Gist options
  • Save zachbrowne/1327043 to your computer and use it in GitHub Desktop.
Save zachbrowne/1327043 to your computer and use it in GitHub Desktop.
Verify email with PHP
<?php
function VerifyEmail($email){
return eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email);
}
if(VerifyEmail('<a class="linkclass" href="mailto:[email protected]">[email protected]</a>')) {
echo 'valid email';
} else {
echo 'in valid email';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment