PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
pickle | Please use [ code=php ], [ code=text ], etc tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: Posting Code in the Forums to learn how to do it too.
Hi
I was trying to use RSS_PHP to convinience my development. But I cannot understand "The Basic RSS_PHP Object Structure" on this page. http://rssphp.net/documentation/v1/
<?php
include "../../rss_php.v1/rss_php.php";
echo "RSS_PHP<br>";
$rss = new rss_php;
$rss->load('http://morris520blog.spaces.live.com/feed.rss');
$items = $rss->getItems();
$items_full = $rss->getItems(true);
foreach ($items_full as $val){
// Insert code here to get the title of each node ???
}
?>
Thanks for help
pickle | Please use [ code=php ], [ code=text ], etc tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: Posting Code in the Forums to learn how to do it too.