MyBB Community Forums

Full Version: Login Save Me
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi im using the vbNavBar so the login is on the far right. I want there to be a check box saying save me. Now this code is in the ucp so i grabbed it and was going to put it next to form boxes. But i was wondering will this work. Username >> Password >> Save Me *ticks* >> Submit will it work?

Thanks for all your help
It won't work automatically. Unfortunately there isn't any action in member.php to be able to what you're asking. You will need to add coding into the "do_login" action of this file. For example, if you call your checkbox "saveme", then this code might work:

if($mybb->input['saveme'] == 1)
{
     $db->query("UPDATE mybb_users SET remember = '1' WHERE uid = '".$user['uid']."' LIMIT 1");
}
Hmm thanks for this but where do this go.