Hello,
I am building an e-commerce site.
Users can go through the site, selecting items which they would like to buy. Those items are added to a cart (database) Well, it works, if 1 person is going through the site.
What i am trying to say is this:
If several users are going through the site, i probably need sessions to keep track of them.
The problem is: I have no idea how to implement this.
How do sessions work, how do i know which user is adding what to which cart?
I am using a database with items to display, and a database which holds the items the user has selected.
Help?
Fish