<?php chdir(public_html/forums); require_once('./global.php'); $threads = $db->query_read(" SELECT title FROM " . TABLE_PREFIX . "thread ORDER by dateline DESC LIMIT 0,5 "); while ($thread = $db->fetch_array($threads)) { echo $thread['title'] . "<br />"; } ?>