php/mySql, Ok, i have 10 items in dB, now i want customers to add/view them but

Hjoss Sampras

New member
not delete them from the dB? this is regarding a shopping cart. where i admin have added 10 items and now i want customers to choose that is add or delete the items they want. how to do this, i dont want them to be deleting from main DB,just access instances of them...............
 
Make a cart table that will reference the products, quantity, and customer. Their items are added to their cart. They only view thier cart. Use Select * from cart where customerID=<customer>.
 
Back
Top