<?php
/*[_X3T4_N!CK_] Muellifdir Silenin Anasin Sikim*/
define('MKTOP', 1);
$title = 'Ban Olanlar';
require_once ('system/connect.php');
require_once ('system/core.php');
require_once ('system/function.php');
require_once ('head.php');
$count = mysql_num_rows(mysql_query("SELECT * FROM `sait` WHERE `ban` = '1'"));
if($count > 0){
$total=intval(($count-1)/$page_sait)+1;
$page=abs(intval($_GET['page']));
if(empty($page) OR $page < 0) $page = 1;
if($page > $total)$page = $total;
$past=intval($count/$page_sait);
$start=$page*$page_sait-$page_sait;
if($_GET['sort'] == 'hits') $sort= 'hits';
elseif($_GET['sort'] == 'in') $sort= 'in';
elseif($_GET['sort'] == 'out') $sort= 'out';
else $sort= 'hosts';
$saits = mysql_query("SELECT * FROM `sait` WHERE `ban` = '1' ORDER BY `".$sort."` DESC LIMIT ".$start.",".$page_sait."");
while($row = mysql_fetch_array($saits)){
$start++;
echo '<div class="text"><span class="eko">';
if($start < 10){
echo "<b>0$start</b>";
}else{
echo "<b>$start</b>";
}
echo '</span> <a href="/out/'.$row['id'].'.php">'.$row['name'].'</a><span class="banned"><b>BanneD</b></span><br/>';
echo '<hr>Sebeb: <b>'.$row['ban_reason'].'</b></div>';
if(isset($user_data) AND $user_data['level'] >= 3){
echo '<div class="text"><a href="/adminka/platforms.php?act=edit_sait&id='.$row['id'].'">Deyiş</a> | ';
echo '<a href="/adminka/platforms.php?act=ban&id='.$row['id'].'">Azad Et</a> | ';
echo '<a href="/adminka/platforms.php?act=del_sait&id='.$row['id'].'">Sil</a></div>';
}
}
navigation($count,$page_sait,$page,'ban.php?sort='.$sort.'&',$total);
}
else echo '<div class="text">BAN olan sayt-lar yoxdur.</div>';
require_once ('foot.php');
?>