I'm retrieving an XML feed via php:
Code: Select all
<?php
header('Content-type: text/xml');
echo file_get_contents('http://www.somexmlfeed.com/feed.xml');
?>Any help much appreciated as I'm struggling with this.
Moderator: General Moderators
Code: Select all
<?php
header('Content-type: text/xml');
echo file_get_contents('http://www.somexmlfeed.com/feed.xml');
?>