I'm using this code to get some XML from a URL:
$url = 'http://***';
$xml = simplexml_load_file($url);
print_r($xml);
This is giving me an empty result, but the following link gives me the correct results:
$url = 'http://***/rss';
I can't seem to see the difference between these links and I don't know how to find the answer on Google. Any assistance is greatly appreciated.