Hi,
Using PHP 5/MySQL 4.1/IIS6
Currently our shopping cart systems stores the cart data in session variables, and the order is only stored in the mysql database once the shopper proceeds through the checkout and clicks the final button to confirm their purchase.
I am considering changing the way our cart works, so that all basket data is also stored in a database table with the following fields for example:
autonumber, sessionID, itemID, itemQty, dateAdded
Does anyone have any thoughts on the advantages/disadvantages of each method? Are then other methods?