Просмотр файла clikus/blist.php

Размер файла: 1.97Kb
<?php

$title="Нарушители правил\n";

include_once ('config/ini.php');
include_once ('config/function.php');
include_once ('config/header.php');
include_once ('config/connect.php');
include_once ('config/click-club.class.php');
include_once ('config/ban.php');
include_once ('config/online.php');

If (!isset($_GET['log'])) define("anybody","true");
include_once ('config/panel.php');

$c=empty($_GET['c'])? false : $_GET['c'];

switch ($c){
case 'blist':
case false:
If (!isset($_GET['page']) || !is_numeric($_GET['page'])) $page=1; else { $page=$_GET['page']; (int)$page;}



$result=mysql_query("SELECT `name`,`time`,`message` FROM `ban` ORDER by `time` desc LIMIT ".(($page-1)*num_best_on_page).",".(num_best_on_page+1));
If (!$result){
echo 'Ошибка запроса к бд...';
break;
}
echo '<div class="header_rek">Бан лист</div>';

$next=false;
$num=mysql_num_rows($result);
If ($num>0){
If ($num<=num_best_on_page) for ($i=0;$i<$num;$i++) echo (($page-1)*num_best_on_page+$i+1).') <u>'.mysql_result($result,$i,'name').'</u> [до '.date("d-m-y H:i:s",mysql_result($result,$i,'time')).'] 
<br/>
<b>Причина: </b> '.mysql_result($result,$i,'message').'
<br/>- - -<br/>';
else  {
for ($i=0;$i<num_best_on_page;$i++) echo (($page-1)*num_best_on_page+$i+1).') <u>'.mysql_result($result,$i,'name').'</u> [до '.date("d-m-y H:i:s",mysql_result($result,$i,'time')).'] 
<br/>
<b>Причина: </b> '.mysql_result($result,$i,'message').'
<br/>- - -<br/>';
$next=true;
}
} else echo 'Нет пользователей!<br/>';
echo '---<br/>';
If ($page>1) echo '<a href="?page='.($page-1).'">';
echo 'назад';
If ($page>1) echo '</a>';
echo ' | ';
If ($next) echo '<a href="?page='.($page+1).'">';
echo 'далее';
If ($next) echo '</a>';

$result=mysql_query("SELECT `name` FROM `ban` ");
If (!$result){
echo 'Ошибка запроса к бд...';
break;
}

echo "<br/>Забаненых: <u>".mysql_num_rows($result)."</u>";

break;
}


include_once ('config/end.php');
//make for clikus.ru
//Admin icq 915317
?>