Loading a remote xml page with file_get_contents()
I have seen some questions similar to this on the internet, none with an answer. I want to return the source of a remote XML page into a string. The remote XML page, for the purposes of this question, is: http://www.test.com/foo.xml In a regular webbrowser, I can view the page and the source is an XML document. When I use file_get_contents('http://www.test.com/foo.xml') , however, it returns a string with the corresponding URL. Is there to retrieve the XML component? I don't care if it uses file_get_contents or not, just something that will work. Seb You need to have allow_url_fopen set in