↧
Answer by Jeff Puckett for Getting pictures to display from an XML feed
<?php $XMLpath = 'http://feeds.bbci.co.uk/news/technology/rss.xml'; $xml = simplexml_load_file($XMLpath); $ns = $xml->getNamespaces(true); //Title of feed echo...
View ArticleGetting pictures to display from an XML feed
I have tried numerous attempts, but can't seem to get the images from this feed into mine. I'm just looking for the thumbnails to be present on my feed too. Can anyone help? <?php $XMLpath =...
View Article