/ Published in: PHP
Expand |
Embed | Plain Text
function isValidEmail($value){ $pattern = "/^([a-zA-Z0-9])+([\.a-zA-Z0-9_-])*@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-]+)+/"; }
Comments
Subscribe to comments
You need to login to post a comment.

What if you enter a valid email with two periods, such as [email protected]?
Sorry, never mind!