Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
$res = mysql_query('SELECT user_id,username FROM phpbb3_users ORDER BY ... LIMIT 1,10 DESC');
while($row = mysql_fetch_assoc($res))
{
echo $row['username'];
}
[phpBB Debug] PHP Notice: in file C:/xampp/htdocs/index.php on line 208: mysql_query() [function.mysql-query]: Access denied for user 'ODBC'@'localhost' (using password: NO)
[phpBB Debug] PHP Notice: in file C:/xampp/htdocs/index.php on line 208: mysql_query() [function.mysql-query]: A link to the server could not be established
[phpBB Debug] PHP Notice: in file C:/xampp/htdocs/index.php on line 210: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource
<?php
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : 'forums/';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();
?>