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:
However when I try to access it through a php file I get a 403 forbidden:
$url = "http://username:[email protected]";
$xml = @simplexml_load_file($url);
print_r($http_response_header);
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