KevinM1 208 Posted December 1, 2006 Share Posted December 1, 2006 I'm currently designing a very simple online store. I have two classes -- Product and ShoppingCart. Both are pretty self-explanitory. Product just ties a product's name together with its price. ShoppingCart holds an array of Products.My concern is with the 'add to shopping cart' links the store will have. I'm just not sure how to get the script to recognize the use of the 'add to shopping cart' links without having to rely on JavaScript. Is there a way for me to do this without relying on JavaScript to serve as the go-between?Thanks. :) Link to post Share on other sites
SharkBait 0 Posted December 6, 2006 Share Posted December 6, 2006 I use a shopping cart with sessions and php. When they click on a button it just adds the item to the cart and shows them the cart.I could see how javascript could be used to add to the cart without taking you to the contents of the shopping cart page. Link to post Share on other sites
Recommended Posts
Archived
This topic is now archived and is closed to further replies.