Hello ;
Is there a MyBB Internal Variables for registred user ?
like this
Is there a MyBB Internal Variables for registred user ?
like this
usergroup['cancp']
is there a MyBB Internal Variables for registred user ?
|
Hello ;
Is there a MyBB Internal Variables for registred user ? like this
2013-04-21, 01:46 PM
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']
2013-04-21, 02:48 PM
(This post was last modified: 2013-04-21, 02:53 PM by sharingamak.)
yes thanx i get it
![]()
2013-04-21, 02:58 PM
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)
2013-04-21, 03:27 PM
(This post was last modified: 2013-04-21, 03:27 PM by sharingamak.)
yes with this
if ( $mybb->user['uid'] > "0") Thank you ! |
« Next Oldest | Next Newest »
|