PDA

View Full Version : Checkboxes? Shopping Carts?



sdrawkcaB
July 26th, 2003, 11:46 AM
How do you use checkboxes to make a shopping cart without using a program like Pay Pal or some other shopping cart type thing.

Digitalosophy
July 26th, 2003, 03:09 PM
huh?

sdrawkcaB
July 26th, 2003, 04:12 PM
www.sandboxautomatic.com you just check what you want, and you go to checkout. Haven't looked much into it.

Digitalosophy
July 26th, 2003, 04:17 PM
Originally posted by sdrawkcaB
How do you use checkboxes to make a shopping cart without using a program like Pay Pal or some other shopping cart type thing.


that is a shopping cart, pretty much you need a database. each item will have a unique ID and a value for the price of each item. what happens is when the user selects and item, a server side code will retrieve the price, and send send vars to a checkout page. a common server side language that can be used is php with a mySQL database, or ASP with a MS Access database. not too hard if you know what your doing, but it's definalty not easy. you could also make an html page an assign values to your item(checkboxes). then send the info to a serverside script tat will just add the items prices, and send a request by email or something, but that is not the correct way to do it.

sdrawkcaB
July 26th, 2003, 06:35 PM
Hmm.. I don't know anything besides HTML, so the easiest way would be the best. How about checkboxes by items, when they checkout, it emails me the price and their information and stuff?

Digitalosophy
July 26th, 2003, 08:10 PM
that's going to be a pain to update, why not do a search for free shopping carts

Alex
July 26th, 2003, 08:13 PM
If you only know HTML, i would suggest going with paypal. Once you learn how to use database, then you can make one your self. I will try to search for some good links for you=)

http://www.simplythebest.net/scripts/paypal_script.html

sdrawkcaB
July 27th, 2003, 03:53 AM
..I've emailed a site with shopping carts, so I'll just go with that..