Hi,
I’m looking to get some advice/help on some code i’m trying to implement. I have recently setup a WAMP server at work and would like to create a basic rss reader. To do this i would like to download a copy of the BBC’s XML file daily. I have tried this at home and all I had to do was:
[php]
echo copy(“http://feeds.bbci.co.uk/news/world/rss.xml","BBC.xml”);
[/php]
At work however we have an ISA server so this code throws up and error. I have modified it to:
[php]
[/php]
However i’m still getting the error:
Warning: file_get_contents(http://feeds.bbci.co.uk/news/rss.xml): failed to open stream: HTTP request failed! HTTP/1.1 407 Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web P in C:\wamp\www\XmlTest.php on line 13
Any help would be much appreciated!!!