I'm using phpwhois php class to find whois details of web domains (http://sourceforge.net/projects/phpwhois/) and i'm using this script on my localhost. When i run this script using below code it shows an error. Please tell me where i am going wrong
Code
<?php
include('whois/whois.main.php');
$whois = new Whois();
$query = 'google.com';
$result = $whois->Lookup($query,false);
echo "<pre>";
var_dump($result);
echo "</pre>";
?>
- And the error is
: Warning: Illegal string offset 'handler' in C:\wamp\www\whois\whois\whois.gtld.php on line 57