E-Mail Address Validation Regex
<?php
function validemail($email)
{
return preg_match('!^[a-z0-9.-_~%]+@[a-z0-9.-_~%]+$!i', $email);
}
?>
Posted on 2008-10-17 20:21 | By: ferdhie | Tags: php | 0 Comments
<?php
function validemail($email)
{
return preg_match('!^[a-z0-9.-_~%]+@[a-z0-9.-_~%]+$!i', $email);
}
?>
Embed Snippet:
0 Comments