MyBB Community Forums

Full Version: is there a MyBB Internal Variables for registred user ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello ;
Is there a MyBB Internal Variables for registred user ?

like this
usergroup['cancp']
You can check $mybb->user['uid']
You'd like to check if user is registered? You need to use $mybb->user['uid']. If it's bigger than 0 user is registered and if it's 0, he isn't. Can also check $mybb->user['usergroup']
yes thanx i get it Big Grin
checking $mybb->user['uid'] is reliable to find if visitor is a member or a guest ($mybb->user['uid'] > 0 implies that visitor is a member)
yes with this

if ( $mybb->user['uid'] > "0")
Thank you !