by sdps » Mon Aug 28, 2006 4:42 pm
Here's an example of how to set this up. It is not possible with straight HTML to have a quantity box. ShopSite doesn't allow that with a drop down menu. You can have a quantity box if you list each item individually but not in a drop down menu format.
The option value number that you see is a number assigned by ShopSite that you would not know about because you do not use those numbers. It is not the item code or the SKU. You can View ShopSite Solution S04174 to learn how to obtain those numbers.
<form action="http://www.yourdomain.com/sc/order.cgi" method="post">
<div align="center">
<input type=hidden name="storeid" value="*yourstoreid">
<input type=hidden name="dbname" value="products">
<input type=hidden name="function" value="add">
<SELECT name="itemnum">
<option value="" selected>Select Product
<option value="794"> 1304: Worlds Fastest Opening Knife </option>
<option value="795"> 1705RB: Black Hardwood Tonfa - Pair </option>
<option value="1156"> 3101: Ninja Kubotan Keychain </option>
</select>
<input type="submit" name="Add to Cart" value="Add to Cart" border="0">
<input type="submit" name="checkout" value="View Cart" border="0">
</div>
</form>
Just thought I'd share what I learned in case someone else wanted to do this.