phpWhois.org/example.php
2002-12-16 12:18:42 +00:00

23 lines
423 B
PHP

<?php
// $Id$
include("main.whois");
$domain = "example.com";
if(isset($_REQUEST['domain'])) {
$domain = $_REQUEST['domain'];
}
$whois = new Whois($domain);
$result = $whois->Lookup();
echo "<form method=\"post\" action=\"example.php\">";
echo "<input name=\"domain\" value=\"".$domain."\"/>";
echo "<input type=\"submit\"/>";
echo "</form>";
echo "<pre>";
print_r($result);
echo "</pre>";
?>