08-06-2000, 11:48 PM
Ok ok I know these are getting lame, but I am the type of person that likes all my forum info on the main page. SO if you are too thn here is another for you. :)
This will list the top X posters with the highest post count.
Demo:
http://www.extremeforums.com/include/topposters.inc.php
<?php
// Set this to the max number top posters to display
$num = 5;
require("config.php");
$db=mysql_connect($servername,$dbusername,$dbpassw ord);
mysql_select_db($dbname);
$query = "SELECT * FROM user ORDER BY posts DESC LIMIT $num";
$resultlatest = mysql_query($query,$db);
while ($latest_array = mysql_fetch_array($resultlatest)) {
echo "<FONT SIZE=\"1\" FACE=\"Verdana, Arial, Helvetica, sans-serif\"> °
<A HREF=\"http://www.extremeforums.com/forums/member.php?action=getinfo&userid=$latest_array[userid]\">$latest_array[username]</A></FONT><BR>";
}
?>
Edit the echo statement and the $num variable as you see fit
~Chris
[Edited by TechTalk on 08-06-2000 at 08:48 PM]
This will list the top X posters with the highest post count.
Demo:
http://www.extremeforums.com/include/topposters.inc.php
<?php
// Set this to the max number top posters to display
$num = 5;
require("config.php");
$db=mysql_connect($servername,$dbusername,$dbpassw ord);
mysql_select_db($dbname);
$query = "SELECT * FROM user ORDER BY posts DESC LIMIT $num";
$resultlatest = mysql_query($query,$db);
while ($latest_array = mysql_fetch_array($resultlatest)) {
echo "<FONT SIZE=\"1\" FACE=\"Verdana, Arial, Helvetica, sans-serif\"> °
<A HREF=\"http://www.extremeforums.com/forums/member.php?action=getinfo&userid=$latest_array[userid]\">$latest_array[username]</A></FONT><BR>";
}
?>
Edit the echo statement and the $num variable as you see fit
~Chris
[Edited by TechTalk on 08-06-2000 at 08:48 PM]