Posted by Janwillem Borleffs on 08/06/06 00:36
Krustov wrote:
> I'm doing whois domain checker for www.hosthome.co.uk and want to add
> a checking routine for the .eu tld .
>
Something like the following should do it:
$domain = 'eu';
$fp = fsockopen('das.eu', 4343);
fputs($fp, "get 1.0 $domain");
fpassthru($fp);
JW
[Back to original message]
|