feed_url('http://seophp.example.com/feed.php'); $feed->cache_location('cache'); $feed->init(); $feed->handle_content_type(); ?> Feed Reading Test data) { // display the title echo '

' . '' . $feed->get_feed_title() . '' . '

'; // display a maximum of 5 feed items $max = $feed->get_item_quantity(5); for ($x=0; $x<$max; $x++) { $item = $feed->get_item($x); // display feed link and title echo '

' . '' . $item->get_title() . '' . '

'; // display feed description echo '

' . $item->get_description() . '

'; } } ?>