okay, I wanted a date/time added to it, so I took it a little further. Configuration is a bit more easy now since it's all listed on top. It also shows the content now of the feed if you fly over it.
Styles used are those from the buildin posts island.
enjoy!
// configuration
$feedurl = 'http://www.fotogalerijen.be/parkcast/parkcast.xml';
$maxentries = 10;
$showdate = 1;
// start code
$body = "";
$count = 0;
$dateinfo = "";
$xml = getFeed($feedurl);
foreach( $xml as $feed ) {
if ($count >= $maxentries) {
break;
}
if( !$feed['title'] ) {
break;
}
$link=$feed['link'];
$time=$feed['time'];
$title=$feed['title'];
$description=$feed['description'];
$pubdate=strtotime($feed['pubdate']);
$pubtime = $html->convert_time($pubdate);
if ($showdate)
$dateinfo = <<<EOF
<span class="small">
$pubtime
</span>
EOF;
$body.= <<<EOF
<tr>
<td class="{$style_side}alt-1" align="left">
<div title="$description">
<a href="$link" target="_blank">$title</a></div>
$dateinfo
</td>
</tr>
EOF;
$count++;
}
I just thought of some security issues if the feed would contain html, so just add feeds you trust ok

I'm away for the weekend, so don't have time to get into it now.