BUT
how do you make it echo the rank of the user. like "Hello! You are an Administrator!
i could do it like
if($user->data['user_rank'] == '1')
{
echo 'You are an Administrator';
}
elseif($user->data['user_rank'] == '2')
{
echo 'You are a DJ';
}
etc...but i was wondering if there was a variable for it, which would make it way easier.
something such as
$rank = $user->data['user_rank_title'] echo $rank;
any help is greatly appreciated
