Quote:
Originally posted by JimF
Sorry, I wasn't thinking...
PHP Code:
<?php
require("path/to/global.php");
print("<table><tr><td colspan=\"2\">Top Posters</td></tr>
<tr><td><b>Username</b></td><td><b>Posts</b></td></tr>");
$db_link = @mysql_pconnect("$dbservername", "$dbusername", "$dbpassword");
mysql_select_db ("$dbname", $db_link);
$query = mysql_query("SELECT posts, username FROM user ORDER BY user.posts DESC, user.username DESC LIMIT 0, 10");
while($row = mysql_fetch_array($query))
{
$username = $row["username"];
$posts = $row["posts"];
print("<tr><td>$username</td><td>$posts</td></tr>");
}
print("</table>");
?>
Put this in any page you want to. Just change the path to global.php and the LIMIT statement to reflect how many people you want to display. It's set at 10.
HTH
-jim
|
I got it to work by making a file inside the vBulletin folder, setting the global require path to just require("global.php"); and then called the file using the reltivie path (eg. include ("http://www.yourdomain.com/vBulletin/topposters.php") and everything worked nice and quickly.