Nope doesnt work.

Is there anyone else who could help, or do you have anymore suggestions?
Actually it did work... but I still have a problem. I have to figure out how to put it under the stats section.
PHP Code:
$result = $DB_site->query("SELECT userid,username,posts
FROM user
ORDER BY posts
DESC LIMIT 10");
while ($s = $DB_site->fetch_array($result, MYSQL_NUM))
{
echo "<a href=\"member.php?u=".$s[0]."\">".$s[1]."</a>(".$s[2].")";
}
thats my code.
Ok I got everything working fine now