View Single Post
  #3 (permalink)  
Old Sep 4th, 2006, 18:21
putergeek putergeek is offline
New Member
Join Date: Sep 2006
Location: Kentucky
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Re: I could use a little help

here is the code for the drop down box

<form name="color"><div align="left">
<select name="select1" size="1">
<option>Black</option>
<option>Bronze</option>
<option>Green</option>
<option>Pewter</option>
</select></div></form>

Here is the code for the add to cart button. what i am looking to have happen is when they select there color and click add to cart it carries the color trough to the shopping cart page

<Form method="post" action="https://www.paypal.com/cgi-bin/webscr" target="paypal">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="brett@gardendiscounters.com">
<input type="hidden" name="item_name" value="Round 360 Chiminea">
<input type="hidden" name="item_number" value="00312">
<input type="hidden" name="amount" value="184.99">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="shipping" value="">
<input type="hidden" name="shipping2" value="">
<input type="hidden" name="handling_cart" value="">
<input type="hidden" name="bn" value="ButtonFactory.Tripod.001">
<input type="image" name="add" src="https://www.paypal.com/images/x-click-but22.gif">
</form>
Reply With Quote