|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-03-29 09:48 UTC] x4com at web dot de
Hello, I get this error with Net_Whois 1.0.1: Fatal error: Call to a member function on a non-object in [..]/Whois.php on line 131 My Script is this: <?php require_once "./Whois.php"; $server = "whois.denic.de"; $query = "phpcrawler.de"; $data = Net_Whois::query($server,$query); echo $data; ?> My PHP Version is 4.2.2 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 17:00:01 2025 UTC |
Example Have problem :< $whois = new Net_Whois; $data = whois->query("poorman.org"); echo $data;Please be careful about the code you write, you forgot a $ $whois = new Net_Whois; $data = $whois->query("poorman.org"); ^ echo $data;