Файл: profi_wm/bans.php
Строк: 19
<?php
// ЛУЧШИЕ СКРИПТЫ ТОЛЬКО НА 4MAST.RU
// АВТОР Chainsaw
// ТОЛЬКО ЭКСКЛЮЗИВНЫЕ СКРИПТЫ
require_once('system/core.php');
require_once('system/header.php');
if(!$user['id']){header('location:/');die();}
$cop = $user['on_page'];
$ca = core::$dbs->querySingle("SELECT count(id) FROM `ban` where `end` > ?",array(time()));
$cp = ceil($ca/$cop);
if(isset($_GET['p']) && is_numeric($_GET['p'])){
$p = abs(intval($_GET['p']));
if($_GET['p']>$cp) $p = $cp;
if($_GET['p']<1)$p = 1;
} else {
$p = 1;
}
$start = $p*$cop-$cop;
$array = core::$dbs->query("SELECT * FROM `ban` where `end` > ? order by `time` desc limit $start,$cop",array(time()));
if($ca==0) echo '<div class="err">Пусто...</div>';
while($arr = $array->fetch()){
echo '<div class="post2">'.ustatus($arr['who']).' <a href="/us'.$arr['who'].'">'.uname($arr['who']).'</a> (дата освобождения: '.date('d.m.y - H:i', $arr['end']).'<br/>Причина: '.smiles(bbcode(nl2br($arr['why']))).'</div>';
}
navig('?');
require_once('system/footer.php');
?>