Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Philip Norton's Blog:
Simple PHP Code To Get last.fm Last Played Tracks
Dec 01, 2011 @ 19:41:00

If you're a last.fm user and have been curious about how to get the latest list of your "last played" selections, Philip Norton has just the code you'll need.

The other day I was approached by a friend (Julie Cheung) and asked if I could create some code that would display a list of last played tracks from last.fm. Julie isn't a PHP developer and so the code I gave her had to be easily understandable so that she could edit it herself if needed. The following code is what I came up with.

The code pulls from the defined user's "recenttracks" feed and parses it (via a simplexml_load_string call) into an object that's looped through and outputted. Data that comes back from the feed includes artist anme, name of the track, a URL to more information about it and an image of the album cover. He also includes an updated version that caches the data for three minutes so it's not always relying on the last.fm servers to be there.

tagged: lastfm recent played tracks tutorial xml feed

Link:


Trending Topics: