# ValekS (03.08.2016 / 18:44)Здесь менять? Дело еще в том что я временно с тела. Ниже скрин низа страницы. На главной все норм, а модулях самого низа нет.
На что хочешь. Там помоему часто используемые названия типо req, res и т.д. Замени хотя бы на req1, res1 и т.д. Или req_forum и т.д.
KOD (+/-)
1.
/** Последние темы форума от seg0ro */
2.
require_once'forum/includes/functoins.php';
3.
$limit=5;// Сколько тем выводить
4.
$topicQuery= mysql_query("SELECT * FROM `forum_topics` ORDER BY `time` DESC LIMIT $limit ");
5.
echo'<div class="menu"><strong>Последние '.$limit.' тем форума:</strong>';
6.
while($topicRes= mysql_fetch_assoc($topicQuery)){
7.
$sub='Автор: '.$topicRes['user'];
8.
if($topicRes['count']>1){
9.
$lastPost= explode(':|:',$topicRes['lastpost']);
10.
$sub.=' <a href="forum/index.php?topic='.$topicRes['topic'].'&post='.$lastPost[1].'" title="перейти к сообщению">Последн.</a>: '.$lastPost[0];
11.
}
12.
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>';
13.
}
14.
echo'</div>';
15.
/** Последние темы форума от seg0ro */
/** Последние темы форума от seg0ro */
2.
require_once'forum/includes/functoins.php';
3.
$limit=5;// Сколько тем выводить
4.
$topicQuery= mysql_query("SELECT * FROM `forum_topics` ORDER BY `time` DESC LIMIT $limit ");
5.
echo'<div class="menu"><strong>Последние '.$limit.' тем форума:</strong>';
6.
while($topicRes= mysql_fetch_assoc($topicQuery)){
7.
$sub='Автор: '.$topicRes['user'];
8.
if($topicRes['count']>1){
9.
$lastPost= explode(':|:',$topicRes['lastpost']);
10.
$sub.=' <a href="forum/index.php?topic='.$topicRes['topic'].'&post='.$lastPost[1].'" title="перейти к сообщению">Последн.</a>: '.$lastPost[0];
11.
}
12.
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>';
13.
}
14.
echo'</div>';
15.
/** Последние темы форума от seg0ro */