PDA

View Full Version : User data variable?


XxBuLLeTz
04-05-2008, 10:19 PM
Hey is there a variable already set that contains:

- If the current user is logged in or a guest
- The user's userid

also, in my user table i added a feild: team. can this be accessed like $whatevervariable[team], or do i have to query for it?

thanks!

Opserty
04-05-2008, 11:14 PM
$vbulletin->userinfo['team']

if($vbulletin->userinfo['userid'])
{
// User is logged in
}
else
{
// Guest
}

XxBuLLeTz
04-05-2008, 11:15 PM
great! thanks so much bro!