Forum Moderators: buckworks
Now I was wandering if any of you know of a reliable shopping cart, possibly open source, that offers a way to just put a button on a pre-created product page and takes care of the shopping cart section only.
Thank you for your help.
<a href="cart.php?asc_action=AddToCart&prod_id=5">I buy this!</a> If your pages go through PHP parser, you can include a common Avactis file once at the beginning of a page and then insert several tags for products:
<a href="<?php ProductBuyLink(5); ?>">And this!</a> /* The data for product with ID=5 must already exist in the Avactis DB - entered through web backend or imported. */
In both cases user gets to his cart. The following checkout process is handled by the software. There's a choice of several payment gateways & shipping carriers.
[edited by: Otaku at 11:38 am (utc) on May 5, 2008]
[edited by: lorax at 5:26 pm (utc) on May 5, 2008]