since no one's helped you try this
this code is taken from nanoentity's top10 hack
Code:
// Top 10 Thread Replys
$pop = $DB_site->query("SELECT replycount,title,threadid,lastpost,postusername,lastposter,views FROM thread WHERE forumid<>'17' AND forumid<>'18' AND forumid<>'20' AND forumid<>'46' AND forumid<>'47' AND forumid<>'57' ORDER BY lastpost DESC LIMIT 5");
while ($poptop = mysql_fetch_array($pop)):
++$poptopnbsp;
$popthread .= "<a href=showthread.php?s=$session[sessionhash]&threadid=$poptop[threadid]>$poptop[title]</a> <a href=showthread.php?s=$session[sessionhash]&goto=newpost&threadid=$poptop[threadid]&goto=lastpost>»</a><br>";
$poppostusername .= "$poptop[postusername]<br>";
$poplastposter .= "$poptop[lastposter]<br>";
$popviews .= "$poptop[replycount] ($poptop[views])<br>";
endwhile;
fiddle witht hat make the nessassary references in your template and hey presto you should have it but then again i dunno nothing about php so i'm relying on my common sense :nervous: