So . . . is it possible to somehow have two sessions going at the same time? I have one session that stores user data, so I can tell if a user is currently logged in, and another one that stores temporary data, for form validation and etc.
I tried using session_name() along with session_write_close() but when I destroy the temporary validation sessions, the user data is destroyed too. Any way to do this?