Barret :: open index.php
find:
PHP Code:
$newuserid=$getnewestusers['userid'];
under it add:
PHP Code:
$lthread= $DB_site->query_first("SELECT threadid, title FROM thread ORDER BY threadid DESC LIMIT 1");
$latestthread = "<a href=\"/forum/showthread.php?s=$threadid=$lthread[threadid]\">$lthread[title]</a>";
then in the forumhome template add this coding where you want the thread to show:
PHP Code:
Lastest Thread: $latestthread
see if that works... regards...
g-force2k2