Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Validate email Address
Useful PHP Code Snippets for Developers - Validate email Address
✍: Guest
function is_valid_email($email, $test_mx = false)
{
if(eregi("^([_a-z0-9-]+)(\.[_a-z0-9-]+)*@([a-z0-9-]+)(\.[a-z0-9-]+)*(\.[a-z]{2,4})$", $email))
if($test_mx)
{
list($username, $domain) = split("@", $email);
return getmxrr($domain, $mxrecords);
}
else
return true;
else
return false;
}
2015-06-19, 1974🔥, 0💬
Popular Posts:
How to apply a character style in Microsoft Word? I want to emphasize few words in a paragraph. Appl...
How to see the key exchange process in an SFTP connection with FileZilla FTP Client? If you are conn...
How to find and read log file in FileZilla Server? I have logging turned on already. For FileZilla S...
What is Microsoft Office 365? Office 365 is a cloud service offered by Microsoft that provide produc...
What are Mimehandler and Plugin Processes of the Google Chrome program on Windows? Mimehandler and P...