Using Product Numbers from a Printed Catalog

Here is an example page for allowing customers to directly enter data from a printed catalog right into the shopping cart. Talk about getting on-line quickly!

Order Direct From Printed Catalog Example

If you have our printed catalog, you can still order on-line. It's easy, it's safe, and it's pretty fun, too! If you have any special instructions for any items entered here, you'll have the opportunity to enter them at checkout time.


Product number from Catalog:

Brief Product Description:

Enter Price from Catalog:

Enter Quantity desired:

    <form action="http://www.cartserver.com/sc/cart.cgi" method="post">
<input type="hidden" name="item" value="s-8882^op1^Catalog desc^op3^op4" />
<br />
Product number from Catalog:
<input type="text" name="op1" />
<br />
Brief Product Description:
<input type="text" name="op2" />
<br />
Enter Price from Catalog:
<input type="text" name="op3" />
<br />
Enter Quantity desired:
<input type="text" name="op4" />
<br />
<input align="center" type="image" border="0" name="add" src="/images/addtocart.gif" />
</form>

This is, of course, a barebones example. You'll want to "dress it up" a bit, but hopefully you get the idea.

Give them a text box for entering the catalog part number, unless you just want to hardcode partnumber to "catalogitem" or something. We've used op1 as the part number var in this example.

By putting "Catalog desc" in the description field, we insure that whatever description the customer enters will be preceded with that string. You'll use an op var for the description, too, but you don't need to specify which one.

For cost, we just give them a textbox, and name it op2. We strip out anything but number and decimals, so unless they're just TRYING to mess it up, things will work just fine.

Use the usual methods for quantity; a text box as above, or maybe a select box. Examples abound.


Copyright. All rights reserved. Americart - 2011