PHP playlist.xml Online Editor

I primarily intended deslack.com as a hub where I could post technical news, articles, codes and so on. So I’ll start by posting one here and see how it goes.

By the way, I apologize for the lack of updates. I’ve been very busy lately, hardly time to tinker with things that I should’ve tinkered—like this website, I still haven’t categorized my posts, meddle with the themes and stuff. Will get to that later.

So, I present to you a tool that I wrote in a hurry for one of my MySpace-worshipping friends, a playlist.xml editor for the Flash MP3 Jukebox that is embeddable to their MySpace profile pages to annoy the hell out of the rest of us.

You could give it a whirl.

4 Responses to “PHP playlist.xml Online Editor”

  1. naz says:

    Hahaha!

  2. twentyone says:

    is it possible that the new added file to the playlist appears at the top of the playlist…
    so that the new added mp3 appears as the first file in the player and not at the bottom of the playlist?

    thx.

  3. Allan Cole says:

    Hey Twenty One,
    I think I figured out how to force this script to add the latest mp3 to the top of the list(instead of adding to the bottom).

    ADD:
    krsort($playlist);

    Just before the ‘foreach’ loop (around line 114) so you end up with:
    krsort($playlist);
    foreach ($playlist as $item) {

    I am not a PHP guru myself, I just did a few searches on php.net, and this one seemed to do the trick.

    Hope that helps.

    Best,
    Allan

  4. ctacont says:

    is it possible add item oder items between or certain position?

    thx

Leave a Reply