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, ∼2210🔥, 0💬
Popular Posts:
Should I edit my PowerPoint document online or offline? If you have Microsoft Office and OneDrive fo...
Where to find answers to frequently asked questions about Adobe Flash Player? I want to understand m...
How to connect FileZilla to an Anonymous FTP Server? If you know the server host name, you can conne...
What is "Microsoft Access Outlook Add-in for Data Collection and Publishing" COM Add-in in Outlook 2...
What do those Fitbit icons mean? Over the years, Fitbit has used a number of icons on their wearable...