File size: 2.18Kb
<?php
#######################################################
# [Автор скрипта: ] #
# [Роман Гринько aka Nominal] #
# [ICQ: 405-623-516] [E-Mail: [email protected]] #
#######################################################
@session_start();
$dir = '../';
$title = 'Список пользователей';
include_once $dir.'system/func.php';
include $dir.'system/head.php';
echo '<div class="label">Список Юзеров</div>
<div class="links2">';
$rdir = opendir($dir.'/system/users');
$i = 0;
while($file = readdir($rdir)) {
if($file!=='.' and $file!=='..') {
$arr[$i] = $file;
$i++;
}
}
$count = count($arr);
if(isset($_GET['start'])) { $start = (int)$_GET['start']; } else { $start = 0; }
if($start < 0 || $start > $count){$start = 0;}
if ($count < $start + 10){ $end = $count; }
else {$end = $start + 10; }
$gg = 1 + $start;
$online = 0;
for ($i = $start; $i < $end; $i++){
$user = $arr[$i];
$user = str_replace('.txt', '', $user);
echo '<img src="/images/ankets.png"> <a href="anketa.php?uz='.$user.'">'.$user.'</a><br>';
$gg++;
}
echo '</div><div class="links2">';
if ($start != 0) {echo '<a href="userlist.php?start='.($start - 10).'&'.SID.'"><-назад</a> ';}else{echo'<-назад';}
echo ' | ';
if ($count > $start + 10) {echo ' <a href="userlist.php?start='.($start + 10).'">далее-></a>';}else{echo'далее->';}
$a=count($arr);
$ba=ceil($a/10);
$ba2=floor(($a-1)/10)*10;
echo'<br />Страницы:';
$asd=$start-(10*4);
$asd2=$start+(10*5);
if($asd<$a && $asd>0){echo ' <a href="userlist.php?start=0&'.SID.'">1</a> ... ';}
for($i=$asd; $i<$asd2;)
{
if($i<$a && $i>=0){
$ii=floor(1+$i/10);
if ($start==$i) {
echo ' <b>'.$ii.'</b>';
}
else {
echo ' <a href="userlist.php?start='.$i.'&'.SID.'">'.$ii.'</a>';
}}
$i=$i+10;}
if($asd2<$a){echo ' ... <a href="userlist.php?start='.$ba2.'&'.SID.'">'.$ba.'</a>';}
echo '<br>Всего Юзеров: <b>'.(int)$count.'</b>';
if($online>0) { echo ' / Из них <b>'.$online.'</b> человек онлайн.'; }
echo '</div>';
include $dir.'system/end.php';
?>