OrderAnywhere with Quantity and Order Options

ShopSite can automatically generate the HTML code to include form elements, such as order options or a quantity input box, with your OrderAnywhere add-to-cart button. The following is an example of the code for the hammer product on the Order Anywhere information page:

<form action="http://ademostore.com/cgi-bin/shopper/sc/order.cgi" method="post">
  <input type="hidden" name="storeid" value="*14a411dac56fb01605b2274b">
  <input type="hidden" name="dbname" value="products">
  <input type="hidden" name="function" value="add">
  <input type="hidden" name="itemnum" value="87">
  <input type="hidden" name="87:finoptnum" value=1>
  <br>Handle Color
  <select name="87:finopt:0" size="1">
    <option value="Black">Black</option>
    <option value="Orange">Orange</option>
  </select>
  <br>Quantity
  <input type="text" size="2" name="87:qnty" value="1">
  <input type="image" src="http://ademostore.com/shopper/als/media/order.gif" border="0" name="Add to Cart" alt="Add to Cart">
  <input type="image" src="http://ademostore.com/shopper/als/media/checkout.gif" border="0" name="View Cart" alt="View Cart">
</form>