*** empty log message ***

This commit is contained in:
sparc 2004-04-22 17:45:41 +00:00
parent 92982efb33
commit e5441a2f1d

View file

@ -40,6 +40,21 @@ echo "<pre>";
print_r($result);
echo "</pre>";
What you can query
------------------
You can use phpWhois to query domain names, ip addresses and
other information like AS, i.e, both of the following examples
work:
$whois = new Whois("example.com");
$result = $whois->Lookup();
$whois = new Whois("62.97.102.115");
$result = $whois->Lookup();
$whois = new Whois("AS220");
$result = $whois->Lookup();
Notes
-----