set_feed_url("http://blog.replicant.us/feed/");
$feed->set_cache_location("cache/");
$feed_init = $feed->init();
if ($feed->error() || !$feed_init) {
print("\t\t\t\t\t
");
print("Loading RSS feed failed");
print("
\n");
} else {
$count = 1;
foreach ($feed->get_items() as $item) {
print("\t\t\t\t\t\n");
print("\t\t\t\t\t
".$item->get_description()."
\n");
if ($count++ >= 10)
break;
}
}
?>