Hello,
I have a site where a user can create a list of goods.
Each time someone creates a list, we store the listId in the session so they can add items to their list.
The problem is,
Say User1 created a list and we store the listId (value=1) in a session (called ListID). User 1 add items to his list and in the db we store the listId, item name ...
Now comes User2, creates a list and gets a listId value of 2 that we store in a session (called ListID). He can also add his items ...
Now User1, who is still logged in, adds another item, but when we get the value for ListID session, it passes 2 (value for User2) instead of 1.
Are sessions stored server side or client side ?
Any suggestions on how to fix that pb ?
Thanks