2
I was able to get it working to some extent..
Basically the following code can get the top 10 songs sorted into 3 columns of title, artist and album.
I was also able to get the title to corresponding song file, but not for the artists (genre).
Thought I would share it here.
include "mainfile.php";
include "mainfile.php";
$query = 'SELECT xfid, title, artist, album, year, addinfo, track, genre, length, bitrate, frequence FROM dhoodi_debaser_files WHERE approved = 1 AND views > 0 ORDER BY views DESC LIMIT 10';
$result = mysql_query($query);
$nrows = mysql_num_rows($result);
if($nrows != 0)
{
print "n";
}
else print "Top Downlooads Not Available "