PHP/Network/Domain Name
Is domain name taken
<?php
$recordexists = checkdnsrr("www.wbex.ru", "ANY");
if ($recordexists)
echo "The domain name has been taken. Sorry!";
else
echo "The domain name is available!";
?>
<?php
$recordexists = checkdnsrr("www.wbex.ru", "ANY");
if ($recordexists)
echo "The domain name has been taken. Sorry!";
else
echo "The domain name is available!";
?>