On my login page now, when a user logins, multiple session variables are created for: user_id, default_location, default_provider. This information is used to auto complete forms and for queries on certain php pages.

If I use the cookies for the remember me, then once the user selects "Remember Me" and logs into the CMS, would I have to set cookies for each of the session variables? Then, I'm guessing, on each page when checking for the remember me cookie, I'd have to assign the other cookies saved for the user to the session variables I'd need.

So, to get this to work, I'd have to save multiple cookies to match each session variable that is created normally at login.

Is that the proper method? Hope I conveyed this clearly.