How to create multiple sessions [closed]

It seems there is a difference between your use of the word session and the technical implementation of a session on the server.

If you want 3 or 4 different ‘sessions’ for your user, you can easily do that by storing 3 or 4 different variables (arrays for example) in the $_SESSION variable.

Leave a Comment