Файл: mlord.ru/forum/section.php
Строк: 39
<?
// Автор проекта GEARBAKC
// Офф.сайт GEARNET.RU
// http://gearnet.ru/users/1
// Только эксклюзивные скрипты!
require_once('../core/index.php');
require_once('../core/func.php');
avt();
$razd = $db->query("SELECT * FROM `section` WHERE `id`='".$_GET['id']."'")->fetch();
$title='Раздел - '.$razd['name'];
require_once('../design/head.php');
$count=$db->query("SELECT id FROM `them` where `section`='".$razd['id']."'")->rowCount();
if($count==0){echo '<div class="h2">Тем нет.</div>';}
require '../core/pagination.php';
$pagination = new Pagination;
$pagination->sett($count, 10, true);
$time_sort=$razd['id']==1 ? 'time' : 'time_ob';
$res = $db->query("SELECT * FROM `them` where `section`='".$razd['id']."' ORDER by `z` DESC, `".$time_sort."` DESC " . $pagination->limit());
foreach($res as $post){
echo '<div class="h2">'.them($post['id']).' <a href=/forum/them/'.$post['id'].'>'.filter($post['name']).'</a></div>';
}
echo $pagination->get();
if($razd['lvl']<=$user['admin']){echo '<div class="h2"><img src="/design/ico/png/theme.png"> <a href=/forum/create/'.$razd['id'].'>Создать тему</a></div>';}
echo '<div class="h2"> <img src="/design/ico/png/left.png"> <a href=/forum/>К разделам</a></div>';
require_once('../design/foot.php');
?>