Add Button
<form method="POST"
action="/cgi-bin/nowsee/cart41/cart">
<input type="hidden" name="ID"
value="<<ID>>">
<input type="hidden" name="cart"
value="ai">
<select size="1" name="qty">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>
<img border="0"
src="/cart/cart40/cart-images/c05/bt_add.gif"
width="45"
height="26">
</form>
Explanation :
<<ID>
is the ID or internal code fied name,
The ID field name is case
sensitive, this means Boy is different than boy.
The Selection field is to choose the quantity (the
name must be "qty") the submit button is to send the data to the cart, and
the </form> is to end the form.
|