Просмотр поста

.
seg0ro
Let Mortal Kombat begin

BmD-music, Отображение только названия темы и количества сообщений в ней на главной странице сайта:

/** Последние темы форума от seg0ro */
require_once 'forum/includes/functoins.php';
$limit = 5; // Сколько тем выводить
$topicQuery = mysql_query("SELECT * FROM `forum_topics` ORDER BY `time` DESC LIMIT $limit ");
echo '<div class="menu"><strong>Последние '.$limit.' тем форума:</strong>';
while ($topicRes = mysql_fetch_assoc($topicQuery)){
  echo '<div><a href="forum/index.php?topic='.$topicRes['topic'].'"><strong>'.functions::checkout($topicRes['topicname']).'</strong></a> ('.$topicRes['count'].')</div>';  
}
echo '</div>';
/** Последние темы форума от seg0ro */