MySQL cart multiple user sessions
I am doing a shopping cart in PHP/MySQL.
What happens when more than one person uses the cart at the same time?
Presumably there has to be a separate session for each person otherwise the two orders might get mixed up.
Is this done automatically or do I have to do something to the scripts so that the two (or more) users data stays separate?
I am doing a shopping cart in PHP/MySQL.
What happens when more than one person uses the cart at the same time?
Presumably there has to be a separate session for each person otherwise the two orders might get mixed up.
Is this done automatically or do I have to do something to the scripts so that the two (or more) users data stays separate?