9 lines
204 B
PHP
9 lines
204 B
PHP
|
<?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";
|
||
|
}
|
||
|
?>
|