diff --git a/Readme.md b/Readme.md index 99f9d30..022bd73 100644 --- a/Readme.md +++ b/Readme.md @@ -40,6 +40,21 @@ echo "
";
 print_r($result);
 echo "
"; +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 -----