Currently developing a shopping cart, the options for persisting the cart, as i see them are:
- Store the entire cart object in a sessions table.
- Store the entire cart object in a cookie session.
- Have a cart table, and store the cart id in a cookie session.
Have i missed any? which is the best to roll with please?
Thanks