PHP shopping cart

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
mattbrand
Forum Newbie
Posts: 1
Joined: Sun Mar 13, 2005 11:05 am

PHP shopping cart

Post by mattbrand »

Hi! I operate the site:

http://www.lunaroma.com

Currently we have a CGI shopping cart that works pretty well. Basically, I maintain MySQL tables of our products, sizes, scents and prices. I have PHP pages that read the MySQL tables, and using forms, call the CGI shopping cart scripts necessary to add items to the cart. I like how this works, because we have many products, and I already have a PHP interface I use to maintain the products.

One crucial aspect of the CGI shopping cart is that it allows us to see pending orders, in order to calculate actual shipping costs before we charge credit cards.

But, not being a CGI person, I cannot customize the shopping cart, nor can I pass PHP session variables to the invoice. Also, the CGI cart has one drawback...it requires cookies.

So I want to switch to a PHP shopping cart that provides the same flexibility. One that does ONLY the cart portion...not the inventory and product tables. One that I can pass information to from my pages in order to add items to a user's shopping cart.

All of my research has only uncovered PHP shopping carts that you have to enter all your products into. Are there any PHP shopping carts that ONLY provide the shopping cart and invoicing piece, and allow the web master to handle the products and pricing tables?

Thanks in advace,

Matthew Brand
Lunaroma, Inc.
User avatar
patrikG
DevNet Master
Posts: 4235
Joined: Thu Aug 15, 2002 5:53 am
Location: Sussex, UK

Post by patrikG »

not that I know of, you won't get it without investing a bit of money into it: i.e. either get someone to write you that CGI cart into a PHP cart, or find someone to adapt a script from, say phpclasses.org.
Post Reply