Вход Регистрация
Файл: modules/user/userlist.php
Строк: 19
<?php
/****
* @package LiveCMS
* @link livecms.org
* @author MyZik
* @version See attached file VERSION.txt
* @license See attached file LICENSE.txt
* @copyright Copyright (C) LiveCMS Development Team
****/

$title $lang['userlist']; // Заголовок страницы
$module 'userlist'// Модуль 

require_once(HOME .'/incfiles/header.php'); // Подключаем шапку

  /**
    * Настраиваем пагинацию
  **/
  
$total mysql_result(mysql_query("SELECT COUNT(*) FROM `users`"), 0);
  
$req mysql_query("SELECT * FROM `users` ORDER BY `id` ASC LIMIT $start$countMess"); 
while (
$res mysql_fetch_assoc($req)) {
    echo (
$i 2) ? '<div class="list1">' '<div class="list2">';
    
$info '&nbsp;[ID: ' $res['id'] . '] [' display_time($res['date_last_entry']) . ']';
    echo 
display_user($res['id'], $info);
    echo 
'</div>';
    
$i++;


  
/**
    * Пагинация 
  **/
if ($total $countMess) {
    echo 
'<div class="home">' display_pagination('userlist.php?'$start$total$countMess) . '</div>';
}

// Подключаем ноги
require_once(HOME .'/incfiles/footer.php');
?>
Онлайн: 5
Реклама