LOL, I am so dumb.

Forgot to echo the stuff.
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.wannabebigforums.com";
// timeframe? (in hours)
$hours="24";
$threadlist="";
$datecut=time()-($hours*60*60);
$allthreads=$DB_site->query("SELECT threadid,title FROM thread WHERE replycount='0' AND dateline>='$datecut' $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>";
}
echo "$threadlist";
?>
(include last 24 hours)