Convert Mp3 Player to read from Database rather than XML. Will pay!

I am looking for someone to help me convert my original flash player from reading from XML to read from one line passed from PHP in XML format to work with the player. The idea is simple…just getting it to work is the problem. I am willing to pay anyone who gets this working for me. here is what i have for you to work with…

Original Code that works…


lvOut = new LoadVars();
lvIn = new LoadVars();
lvIn.onLoad = function (success)
{
    //data_xml.load("http://www.mp3profiles.com/Website/usr/" + lvIn.playurl + "/playlist.xml");
    data_xml.load("http://www.mp3profiles.com/Website/usr/64/playlist.xml");
};
lvOut.folder = _level0.folder;
lvOut.sendAndLoad("http://www.mp3profiles.com/Website/is.php", lvIn, "POST");
Stage.showMenu = false;
Stage.scaleMode = "noScale";
stop ();
volume = 90;
current_song = 1;
top.equalizer._visible = 1;
data_xml = new XML();
data_xml.ignoreWhite = true;
data_xml.onLoad = loadData;

Code that i want to work :


var a = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><songs><song name=\"Ashes of the wake\" band=\"Lamb Of God\" file=\"http://www.Mp3Profiles.com/Website/usr/64/10_Ashes_Of_The.mp3\"/><song name='TEST' band='test band' file='http://www.Mp3Profiles.com/Website/usr/64/10_Track_10.mp3'/></songs>";
data_xml = new XML();
data_xml.ignoreWhite = true;
data_xml.parseXML(a);
loadData();

That is only a part of the code, but i just want to show you a better example of what i would like.

Thanks in advance!