I'm trying to create an HTML Add to Cart button. When I click the button on my test page, the item_name is blank for the item that gets added to the cqrt. <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="business" value="<account-email>">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="add" value="1"
<input type="hidden" name="item_name" value="Concert Ticket">
<table>
<tr>
<td><input type="hidden" name="on0" value="Ticket Type">Ticket Type</td>
</tr>
<tr>
<td>
<select name="os0">
<option value="Adult">Adult $10.00 USD</option>
<option value="Child">Child $5.00 USD</option>
<option value="Family">Family $25.00 USD</option>
</select>
</td>
</tr>
</table>
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="option_select0" value="Adult">
<input type="hidden" name="option_amount0" value="10.00">
<input type="hidden" name="option_select1" value="Child">
<input type="hidden" name="option_amount1" value="5.00">
<input type="hidden" name="option_select2" value="Family">
<input type="hidden" name="option_amount2" value="25.00">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form> I'm not sure what's wrong.
... View more