I'm trying to parse an XML feed by using PHP and I keep getting errors,
<?php
$html = simplexml_load_file('http://api.hotukdeals.com/rest_api/v2/?key=6948de072326c21e9f7c76b2a153e49a&merchant=tesco-com-and-in-store&online_offline=offline&order=new&forum=deals&results_per_page=10');
foreach ($html as $dealinfo):
$api_item=$dealinfo->title;
endforeach;
?>
Can anyone help where I may be going wrong with this?
Heres the link to the page.