Logo
Quick Commerce Shopping Cart

Shopping Cart Software

Merchant Login

QCCart "Add To Cart" Code Explanations

  1. QCCart's shopping cart software uses several set fields in the "Add To Cart" action. Each of the variables are separated by a   |   character   (pronounced "or" and is found on the keyboard above the back-slash key) and allows information to be compiled into a single variable, reducing data entry time.

  2. The field separators (the first 4 are required) must be used in proper order. If a certain field is not applicable to you, leave it empty as a placeholder to prevent the field count from being thrown.

  3. If your product entry requires a quotemark you must use the code     "     or data will be lost.

    Field order.
    Click for more infomration.
    1.
    cartid
    2.
    itemname
    3.
    itemcost
    4.
    itemquantity
    5.
    itemno
    6.
    itemhandling
    7.
    itemshipmethod
    8.
    itemweight
    9.
    itemexempt
    10.
    itemdiscount
    11.
    itemsilentpost
    12.
    itemdropshipzip
    13.
    itemESD
    14.
    itemRecurring
    15.
    itemThumbnail
    16-19.
    Reserved for future use
    20-29.
    Misc Product Information

  4. Here is an example of the HTML needed to create an add button. Please remember that you would need to modify each field. If you are not going to use some of the fields, simply leave them empty.
    <form method=POST action="https://www.qccart.net/cgi-bin/cart.cgi">
         <input type=hidden name=additem value="cartid|itemname|itemcost|itemquantity
                   |itemno|itemhandling|itemshipmethod|itemweight|itemexempt|itemdiscount
                   |itemsilentpost|itemdropshipzip|itemESD|itemRecurring">
         <input type=submit value="Add To Cart">
    </form>