Environment - PHP 4.2.3/Apache 1.3.27/RH Linux
If I code something like :
$a = file("http://www.google.com");
everthing works fine, i.e. the array 'a' contains
the contents of the google home page. BUT, if I do
$a = file("http://www/google.com/search?hl=en&le=ISO-8859-1&q=Bush&btnG=Google+Search");
I get the following:
"Warning: file success"
along with an empty array.
Does anyone have any idea what is going wrong?