OS: Windows 2000
PHP Version: 4
Web Server: Apache 1.3
*the Apache server is behind a firewall.
I have installed the pear net::data package. I am trying to query for a DNS server using the Net_DNS_Resolver class' query method:
$dns = new Net_DNS_Resolver();
$q = $dns->query("www.google.com", "TXT");
echo "<br>Found?:" . $q ;
I get false returned no matter what. I installed the package using pear. Besides installing the package, is there some additional configuration I need to do so this package will work? i.e. is there a configuration file I need to set up so the DNS Resolver knows which host to query?