Is it possible to create 2 separate sessions on the same site at the same time. I have a site (example.com) and I have a password protected administration area (example.com/admin). Both use sessions and if you have both open in separate browser windows then the seesion data gets crossed up. As you move around example.com it screws up the session data on example.com/admin since it is all stored in a single session. I suppose I could create a nested array within $_SESSION that contains all the admin stuff but I was hoping there was a quick and easy way to just create a whole new separate session.
I'm using the default cookie method of session propagation. So I suppose a single cookie is being generated and maping to single session file on the server.