I use a whois script on my server?
and doesn't work
Warning: fsockopen(): unable to connect to .........:43
Is the port 43 wrong.
Or it is a possible firewall
the code use in the script is good because on my local server"localhost" work fine
It's like this:
........
$ns = fsockopen($anic,43); fputs($ns,"$domname\r\n");
$result = '';
while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
.................
Any sugestions will be good.