Sun Nov 30, 2008 7:30 pm
<?php
if (eregi("^[a-zA-Z0-9_]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-\.]+$]", $email))
{
return FALSE;
}
?>
<?php
function checkmail($email){
return eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email);
}
[email protected]
<?php
list($mailusername, $Domainname) = split("@",$myemail);
if(getmxrr($Domainname, $MXHost))
{
return TRUE;
}
else
{
if(fsockopen($Domainname, 25, $errno, $errstr, 30))
{
return TRUE;
}
else
{
return FALSE;
}
}
?>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.