kod aşağıdadır..

<?php
require_once 'simplepie.php';
$feed = new SimplePie();
$feed->set_feed_url('http://www.memurrehberi.com/rss2.php');
$feed->init();
$feed->handle_content_type();
if($feed->error()) {
echo '<strong>Hata</strong>: '.$feed->error();
exit();
}

$limit = $feed->get_item_quantity(5);
printf("<strong>%s</strong>", $feed->get_title());

for($i=0; $i<$limit; ++$i)
{
$item = $feed->get_item($i);

printf("<a target=\"_blank\" href=\"%s\"?phpMyAdmin=sTfRvBzMpHQj7RuyjeTqJbvr0wb >%s</a>", $item->get_permalink(), $item->get_title());

printf("<p><small>%s</small></p>");

print '<hr/>';
}
?>