<?php
$rdf = simplexml_load_file('http://ws.audioscrobbler.com/rdf/history/audiolover');

foreach($rdf->item as $stabby)
{
	echo "<a href=\"".$stabby->link."\">".$stabby->description."</a><br />\n";
}
?>