↧
Answer by Repox for Parsing RSS Feed with SimpleXML
Your code works perfectly. I suspect that your current settings doesn't allow fopen over url Try checking that. If you can't change that setting, try CURL, instead: <?php $ch =...
View ArticleParsing RSS Feed with SimpleXML
When I Run this code: <?php $rss = simplexml_load_file('http://stackoverflow.com/feeds'); ?> <h1><?php echo $rss->title; ?></h1> <ul> <?php foreach($rss->entry...
View Article