checkdnsrr-2.php : checkdnsrr « Network « PHP
- PHP
- Network
- checkdnsrr
checkdnsrr-2.php
<?php
$email = "[email protected]";
$domain = explode("@",$email);
$valid = checkdnsrr($domain[1], "ANY");
if($valid) echo "The domain has an MX record!";
else echo "Cannot locate MX record for $domain[1]!";
?>
Related examples in the same category