/ Published in: PHP
URL: http://code.google.com/p/php-email-address-validation/
Checks for a valid email address using the php-email-address-validation class. Source and docs = URL
Expand |
Embed | Plain Text
include('EmailAddressValidator.php'); $validator = new EmailAddressValidator; if ($validator->check_email_address('test@example.org')) { // Email address is technically valid } else { // Email not valid }
You need to login to post a comment.
