Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?php
echo('<form method="post" class="searching" action="whois.php">
<fieldset>
<label>Проверка доменов</label>
<input class="search" type="text" name="domen" onfocus="if(this.value==this.defaultValue)this.value=\'\'"
onblur="if(this.value==\'\')this.value=this.defaultValue" value="Проверить домен…" />
<input class="hledat" type="image" src="img/search-button.gif" name="" alt="Search" />
</fieldset>
</form> ');
if($_POST['domen']!=''){
$ip=$_POST['domen'];
//$url="whois.crsnic.net";
//$url="whois.nic.us";
//$url="whois.internic.net";
$url="whois.ripn.ru";
//ru whois.ripn.ru
//su whois.ripn.net
//com whois.verisign-grs.com
//net whois.verisign-grs.com
//org whois.pir.org
//biz whois.biz
//info whois.afilias.info
//name whois.nic.name
//ws whois.worldsite.ws
//cc whois.verisign-grs.com
//co.uk whois.nic.uk
//org.uk whois.nic.uk
//us whois.nic.us
$sock = fsockopen($url, 43, $errno, $errstr);
if (!$sock) exit("$errno($errstr)");
else
{
fputs ($sock, $ip."\r\n");
$text = "";
while (!feof($sock)){
$text .= fgets ($sock, 128)."<br>";
}
fclose ($sock);
echo $text;
}
}
?>
Только для некоторых зон, вот еще несколько возможных вариантов 'NOT FOUND', 'Status: AVAILABLE', 'No match for', 'AVAIL' или вообще что-то типо "Nombre del Dominio"Ну регуляркой распарсить ответ...
Наверное если есть "No entries found for the selected source(s)." значит свободен.