Do a WHOIS query for any domain using the script below. PHP: <form method="POST" action= "<?$_SERVER['PHP_SELF']?>"> <label>Do a WHOIS query:</label> <P> <INPUT name="domain" SIZE="20" MAXLENGTH="22"> <INPUT TYPE="SUBMIT" VALUE="Check name"> <INPUT TYPE="RESET" VALUE="Clear"> </P> </FORM> <hr> <font size="2"> <?php function whois($domain, $server="www.go4expert.com") { $fp = fsockopen ($server, 43, &$errnr, &$errstr) or die("$errno: $errstr"); fputs($fp, "$domain\n"); while (!feof($fp)) echo "<pre>".fgets($fp, 2048).""; fclose($fp); } If (isset ($domain)) { whois($domain); } ?> </font>