Все забываю скинуть. Вот правильный код вывода последних тем на главную. В mainmenu.php
require_once 'forum/includes/functoins.php';
$limit = 3; // Сколько тем выводить
$topicQuery = mysql_query("SELECT * FROM `forum_topics` ORDER BY `time` DESC LIMIT $limit ");
echo '<div class="list2">';
while ($topicRes = mysql_fetch_assoc($topicQuery)){
$sub = 'Автор: '.$topicRes['user'];
if ($topicRes['count'] > 1){
$lastPost = explode(':|:', $topicRes['lastpost']);
$sub .= ' <a href="forum/index.php?post='.$lastPost[1].'&find" title="перейти к сообщению">Последн.</a>: '.$lastPost[0];
}
echo '<div>'.show_topic($topicRes, $sub.' '.functions::display_date($topicRes['time']).'<br/>Подфорум: <a href="forum/index.php?forum='.$topicRes['forum'].'">'.functions::checkout($topicRes['forumname']).'</a>').'</div>';
}
echo '</div>';