Quote:
Originally Posted by NTLDR
$DB_site->query_first() will only return one result, no matter now may rows you tell it to fetch from the DB. You need to use $DB_site->query() and use $DB_site->fetch_array() in a while loop to get more than one item from the DB.
|
Duh, I am an idiot

Thanks Lee
It should be this
PHP Code:
<?php
error_reporting(7);
require('./global.php');
$latestthread=$DB_site->query("SELECT title,threadid,dateline FROM thread ORDER BY dateline DESC LIMIT 20");
while ($latestthreads=$DB_site->fetch_array($latestthread)) {
echo ("<a href=\"$bburl\showthread.php?s=$session[sessionhash]&threadid=$latestthreads[threadid]\">$latestthreads[title]</a><br /> ");
}
?>