Skip to content

Instantly share code, notes, and snippets.

@matrixfox
Created November 28, 2013 00:28
Show Gist options
  • Save matrixfox/7685426 to your computer and use it in GitHub Desktop.
Save matrixfox/7685426 to your computer and use it in GitHub Desktop.
<?php
$html = "";
$url = "http://ws.audioscrobbler.com/2.0/user/matrixfox/topartists.xml";
$xml = simplexml_load_file($url);
for($i = 0; $i < 10; $i++){
$title = $xml->artist[$i]->image['3'];
$title = str_replace("http://userserve-ak.last.fm/serve/252/","",$title);
$html .= "<img src='http://userserve-ak.last.fm/serve/252/$title'>";
}
echo $html;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment