What would you like to order this by?
i.e Top XX latest threads with no reply?
That is quite easy to do:
PHP Code:
<?php
error_reporting(7);
require("./global.php");
$whereforum="";
// if you would like to select threads only from one forum,
// uncomment the following line and replace 1 with the ID
// of that forum.
// $whereforum="AND forumid='1'";
// how many threads would like to display?
$threadnum="10";
// path to your vBulletin? (no trailing slash please)
$pathtovb="http://www";
$threadlist="";
$allthreads=$DB_site->query("SELECT threadid,title FROM thread WHERE replycount='0' $whereforum ORDER BY dateline LIMIT $threadnum");
while ($thread=$DB_site->fetch_array($allthreads)) {
if ($threadlist!="")
$threadlist.="<br>";
$threadlist.="<a href=\"$pathtovb/showthread.php?threadid=$thread[threadid]\">$thread[title]</a>";
}
?>
Pretty adjustable to your needs methinks.
Just upload to your forum's folder, and include using SSI.