KevinM1 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. :) Quote Link to comment Share on other sites More sharing options...
SharkBait 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.