I know there are shopping carts out there such as oscommerce and a few others that I saw on the code snippet section. But those may not work the way I need something to work (which is really quite simplistic...i think), so if you have a moment, I will explain what I am trying to do.
We have a b2b website where customers order products in large quantites with quantity breaks (100, 250, 500, 1000 pieces, etc) and I need a cart where this is easy to do. Also, in my business, orders are so custom, the final price (of course approved by the customer) is often not even what the customer sees on the website. Perhaps the customer wants various prints on the product, additional colors, etc, and as such, the total of the cart they send us is not that important. Further, it is NOT important to us that they send payment with the cart.
If i didn't care about the website being cheesy, I could simply have a "Place Order" button on each product page which then goes to a form, which will mostly be pre-filled out based on what product they chose (all from the database), and then the customer would simply enter their information, desired quantity, etc. And I could do this for every product...just by using forms. But this is very cheesy and unprofessional, because if a customer wanted to order three products, they would have to fill this form three times, etc.
Basically, I simply want to have the functionality to have customers click some "add to cart" icon, and then they would choose the quantity, get the appropriate price break discount, and the product would go to the cart. And when they are ready to "check out", they just fill in their name, contact info, etc, and it will state that they will be contacted regarding their order. And I really don't even care or want customers to register first, as this is not necessary for us.
Is this something that is somewhat :o easy to implement in php/mysql? Perhaps using sessions (something else i have no idea about)?
Please advise.
Thanks.
Jonathan