Quantcast
Channel: loading rss feed into php - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by ioseb for loading rss feed into php

Check this: <?php $feed = simplexml_load_file('http://www.hln.be/rss.xml'); foreach ($feed->channel->item as $item) { $title = (string) $item->title; $description = (string)...

View Article



Answer by ioseb for loading rss feed into php

You can try this: <?php $feed = simplexml_load_file('http://www.hln.be/rss.xml'); print_r($feed); ?> This gives you object/array structure which you can use directly instead of communicating with...

View Article

loading rss feed into php

What's the best way to load an RSS feed into a PHP feed? I also want to handle the media:content problems to display a image. At this moment I have the following code but I don't know if this is the...

View Article
Browsing all 3 articles
Browse latest View live




Latest Images