I got it to work with this code I just need some help with excluding some forums form it any ideas how to do this
// Top 10 Viewed Threads//
$top = "10"; // change this to the number of posters you want to show.
echo("<table border=0 cellpadding=4 cellspacing=0><tr><td><b>Top 10 Viewed Threads</b></td><td><br>");
echo("</table>");
echo("<table border=0 cellpadding=0 cellspacing=0><tr><td><b>Thread</b></td><td><b>Viewed</b></td></tr>");
$postsresult = mysql_query("SELECT COUNT(*) AS count,threadid,title,views,forumid FROM thread GROUP BY threadid ORDER BY views DESC LIMIT $top;");
$lugar=1;
while ($vthreads = mysql_fetch_array($postsresult)):
if (($counter++ % 2) != 0);
echo("<tr><td><strong><big>·</big></strong> $lugar: <a href=\"$bburl/showthread.php?s&threadid=$vthreads[threadid]\">$vthreads[title]</a></td><td align=\"center\">$vthreads[views]</td></tr>");
$lugar++;
endwhile;
echo("</table>");
echo("<br>");
|