MyBB Community Forums

Full Version: Site Integration: Users Logged In/Guests
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello

I am new to MyBB forum, and Im curious, is it possible for me to integrate my website with the mybb user state kind of like the smf code:

<?php
if ($context['user']['is_logged'])
   {
      echo '';

}

else {
      echo '';
}?>
You could just use;
if ($mybb->user['usergroup'] != "1") //Check if not guest
{
//Logged In
}
else
{
//Not Logged In
}
(2010-08-25, 01:39 PM)Polarbear541 Wrote: [ -> ]You could just use;
if ($mybb->user['usergroup'] != "1") //Check if not guest
{
//Logged In
}
else
{
//Not Logged In
}

thanks for answering my question, I just tried it, and it worked Big Grin

No problem Smile