14i.
Image Submit with Popup Menus, Radio Buttons and quantity Input.
This BuyObject is appropriate when you have an item that
- comes in multiple options and
- you wish people to be able to select one type of each option
- and select only one one of another option
- and order in any quantity.
You can add and/or delete popup menus and radio buttons.
Source Code:
<form action="../Cart/addwOptions.php" method="get">
<!-- (C) 2001 eCatalogBuilders. All rights reserved by eCatalogBuilders. -->
<input type="hidden" name="item" value="014i">
<input type="hidden" name="product[]" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<!--CustID value must be left blank-->
<input type="hidden" name="custID">
<input type="hidden" name="length" value="5">
<input type="hidden" name="width" value="1">
<input type="hidden" name="height" value="1">
<input type="hidden" name="weight" value="1">
<input size="2" maxlength="2" type="text" name="quantity" value="1">
<!--Popups must be named product so that the information will land in the product description field in the cart.-->
<select name="product[]" size="1">
<option value="Color Unspecified" selected>Color</option>
<option value="White">White</option>
<option value="Beige">Beige</option>
<option value="Blue">Blue</option>
<option value="Puce">Puce</option>
<option value="Pink">Pink</option>
<option value="Rose">Rose</option>
<option value="Teal">Teal</option>
</select>
<select name="product[]" size="1">
<option value="Size Unspecified" selected>Size</option>
<option value="30/30">30/30</option>
<option value="30/32">30/32</option>
<option value="32/32">32/32</option>
<option value="34/32">34/32</option>
<option value="34/34">34/34</option>
</select><br>
<p>
<input type="radio" value="ValueA" name="product[]"> Text Here
<input type="radio" value="ValueB" name="product[]"> Text Here
<input type="radio" value="ValueC" name="product[]"> Text Here
<input type="radio" value="ValueD" name="product[]"> Text Here</p>
<p>
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle"></p>
</form>
-
-
-
|