I have VBportals and would like to add a Side Block to show my top five with Karma, can anyone tell me the PHP I would need to call that up.
If this helps, I already have on show the top five posters and the PHP used is;
// Set this to the max number top posters to display
$a=1;
$num = 5;
global $bburl;
$query = "SELECT * FROM user ORDER BY posts DESC LIMIT $num";
$resultlatest = mysql_query($query);
while ($latest_array = mysql_fetch_array($resultlatest)) {
echo " <font size = 1> $a: <A HREF='$bburl/member.php?action=getinfo&userid=$latest_array[userid]'>$latest_array[username] </A> $latest_array[posts]</FONT><BR>";
$a++;
}
echo "<font size = 1><A HREF='$bburl/memberlist.php?what=topposters&perpage=20'>more... </A>";
|