I would not recommend this since Its not neat and tidy

but try doing this.
Go to
This is the
playlist.php
This randomizes the playlist
Code:
<?PHP
$y=1;
$i=1;
$track = "";
$rbsPath = "sounds/";
$rbsExt = ".rbs";
if ($dir = opendir(".")) {
while (false !== ($file = readdir($dir))) {
if ($file{0} != "=") {
if (strrchr($file,".") == $rbsExt) {
$last_mod = filemtime($file);
$track[$last_mod] = utf8_encode($file);
$i++;
}
}
}
}
closedir($dir);
header ("Content-type: text/xml");
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
echo "<tracks>\n";
if ($track != "") {
// * Shuffled Playlist
// * by moeli
// * http://www.moeli.com/scripts/
$shuffled = array_rand($track, count($track));
foreach($shuffled as $skey) {
$newlist[$skey] = $track[$skey];
}
while (list ($key,$val) = each ($newlist)) {
echo "<track trackMod=\"".$key."\" title=\"".utf8_encode(htmlentities(substr($val,0,strrpos($val,'.'))))."\" path=\"".$rbsPath.htmlentities($val)."\"/>\n";
$y++;
}
}
echo "</tracks>";
?>
and this if you it alphabetical
Code:
<?php
$y=1;
$i=1;
$track = '';
$rbsPath = 'sounds/';
$rbsExt = '.rbs';
if ($dir = opendir('.')) {
while (false !== ($file = readdir($dir))) {
if ($file{0} != '=') {
if ( strrchr($file,'.') == $rbsExt) {
$last_mod = filemtime($file);
$track[$last_mod] = utf8_encode($file);
$i++;
}
}
}
}
closedir($dir);
header ("Content-type: text/xml");
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
echo "<tracks>\n";
if ($track != '') {
sort($track);
while (list ($key,$val) = each ($track)) {
echo "<track trackMod=\"".time()."\" title=\"".utf8_encode(htmlentities(substr($val,0,strrpos($val,'.'))))."\" path=\"".$rbsPath.$val."\"/>\n";
$y++;
}
}
?>