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, ∼2084🔥, 0💬
Popular Posts:
What is a PowerPoint Template (.potx) File? What is the difference between .potx and .pptx files? A ...
How to save a presentation with macros in the PowerPoint Macro-Enabled Presentation (*.pptm) file fo...
Where to find answers to frequently asked questions about Fitbit devices? Here is a collection of fr...
What are the steps to insert Dynamic Fields in Microsoft Word? I want to insert the chapter heading ...
Why am I getting the "Spawn Failed: Server at http://127.0.0.1:47353/u ser/fyicenter/didn't respond ...