Ik heb even een simpele pagina voor je in elkaar gezet, maar je zult hem zelf uit moeten breiden.
Code: Selecteer alles
<?php
/**
* @ignore
*/
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();
$sql = 'SELECT user_id, username, user_colour, user_birthday
FROM ' . USERS_TABLE . '
WHERE user_type != ' . USER_IGNORE . '
AND user_birthday != ""';
$result = $db->sql_query($sql);
while($birthday = $db->sql_fetchrow($result))
{
echo get_username_string('full', $birthday['user_id'], $birthday['username'], $birthday['user_colour']) . ' - ' . $birthday['user_birthday'] . '<br />';
}
?>
[wiki]Pagina toevoegen (phpBB3)[/wiki]