listening
GetXMLTree('/path/to/your/recent.xml');
if (count($xml['RDF:RDF'][0]['ITEM'])>0) {
$cnt=0;
echo ''."\n";
foreach ($xml['RDF:RDF'][0]['ITEM'] as $item) {
$cnt++;
if ($cnt<=5) {
list($date,$time) = split('T',$item['DC:DATE'][0]['VALUE']);
$time = ereg_replace('\+00:00','',$time);
$timeplay = $date . ' ' . $time;
$timeplay = date('m/d h:i a',strtotime($timeplay)-(60*60*5));
echo '- '."\n";
echo ' '."\n";
echo ' ';
echo ucwords($item['MM:ARTIST'][0]['DC:CREATOR'][0]['DC:TITLE'][0]['VALUE']);
echo ''."\n";
echo ' '."\n";
echo '
'."\n";
echo ' '.ucwords($item['DC:TITLE'][0]['VALUE'])."\n";
echo ' '.$timeplay.'
'."\n";
echo ' '."\n";
}
}
echo '
'."\n";
} else {
echo '';
}
?>