The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#7
|
|||
|
|||
![]()
Here is the hack for showing the top posters on a page, im positive it can be edtited to show other things, I'll do that later
![]() ![]() 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>"); ?> snyx |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|