Logo
Quick Commerce Shopping Cart

Shopping Cart Software

Merchant Login
Example 5

In this example we have multiple items with separate quantities being ordered by a single add to cart button. If no value is put in then that item is not added to the cart.

Part Number Item description Select desired model Click to add to cart
ACME-ST ACME Searchtub Monster Truck 4x4 Tracker
Slickster Big City Finder
Amphibious FrogTub Seeker

Note that these are examples of what QCCart software can be made to do.
You can create any layout, use any colors, or web design you wish for use with QCCart.

The code used to create this button can be found below.

divider

<form method="POST" action="//www.qccart.net/cgi-bin/cart.cgi">
      <input type="hidden" name="AddItem1" value="demo|Monster Truck 4x4 Tracker|900.00|VARQuan1|ST01||prompt|80">
      <input type="text" name="VARQuan1" size="4"> Monster Truck 4x4 Tracker<br>
      <input type="hidden" name="AddItem2" value="demo|Slickster Big City Finder|900.00|VARQuan2|ST02||prompt|80">
      <input type="text" name="VARQuan2" size="4"> Slickster Big City Finder<br>
      <input type="hidden" name="AddItem3" value="demo|Amphibious FrogTub Seeker|900.00|VARQuan3|ST03||prompt|80">
      <input type="text" name="VARQuan3" size="4"> Amphibious FrogTub Seeker<br>
      <input type="image" name="submit" src="../images2/add.gif">
</form>