PDA

View Full Version : Top Referrals


Snoop Dogg
02-16-2001, 08:03 PM
How about a hack that displays the people with the top refferals? Like the top posters.

02-16-2001, 08:09 PM
$users = $DB_site->query("SELECT COUNT(*) AS count, user.username, user.userid FROM user AS users
LEFT JOIN user ON (users.referrerid = user.userid)
WHERE users.referrerid <> 0
GROUP BY users.referrerid
ORDER BY count DESC");

02-16-2001, 10:19 PM
Thanks, so I just insert this code where I want it to appear in any of the vB files?

02-16-2001, 10:22 PM
You have to fetch the $users variable and run it through a while loop but I have you the important part.