PHP Get XML from Remote URL with HTTP Authentication

crypter_1

New Member
I have a URL which gives an xml output. It requires a username and password which I can access through a browser using the format: \[quote\] http://username:[email protected]\[/quote\]However when I try to access it through a php file I get a 403 forbidden: \[code\]$url = "http://username:p[email protected]";$xml = @simplexml_load_file($url);print_r($http_response_header);\[/code\]I have tried using curl and setting the user agent to a browser but this still doesn't echo the data.EDIT:I also tried using pear's http request 2, which also gives a 403 forbidden
 
Back
Top