putergeek
09-06-2006, 12:20 AM
I am building an E commerce website and have a product that has different colors. I have a drop down box that lists the colors in it but I cannot get it to carry the color selected to my pay pal shopping cart
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>
And here is the code for the shopping cart button
<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>
Any help would be greatly appreciated:
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>
And here is the code for the shopping cart button
<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>
Any help would be greatly appreciated: