Hi,
Please if you may assist me with this problem:
I am using the file() function on a URL. EG:
$array=file('http://www.server.com/test.html);
This is run on a number of urls (on different servers). However on say two of the servers I get the following warning:
Warning: file("'http://www.server.com/test.html") - Success in /var/www/........
But the others correctly return arrays.
According to the PHP manual, this is due to non-standard compliant webserver. Attempts to supress the warning are useless, as it still does'nt return the array.
The pages I am trying to access do exists.
Anyone have any ideas?
Thanks.