Perhaps you can help me. I created your own page and i need created list of user.
This is my php file:
Code: Select all
<?php
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup('hodnosti');
page_header('Seznam hodností');
$template->set_filenames(array(
'body' => 'hodnosti.html',
));
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
page_footer();
?>
Code: Select all
SELECT username FROM forum_users WHERE user_rank = 1;
Colorized username is very great.
