HTML interesse |
|
$phpEx = 'php';
$phpbb_root_path = PATH_FORUM;
include($phpbb_root_path . 'common.' . $phpEx);
$user->session_begin();
$auth->acl($user->data);
$user->setup();
if( $user->date['is_registered'] ) {
echo 'je bent ingelogd';
}
else {
echo 'niet ingelogd';
}
$phpEx = 'php'; $phpbb_root_path = PATH_FORUM; include($phpbb_root_path . 'common.' . $phpEx); $user->session_begin(); $auth->acl($user->data); $user->setup(); if( $user->date['is_registered'] ) { } else { }
Dit gebruik ik zelf werkt prima, krijg je hier errors van als je dit gebruikt in een functie of class dan moet je ff globals maken, namelijk
global $db, $cache, $config, $template, $user, $auth, $phpEx, $phpbb_root_path;
global $db, $cache, $config, $template, $user, $auth, $phpEx, $phpbb_root_path;
|