Hi there everyone, I know that this topic has been explored on these forums, but I couldn't find the answer I wanted (after trial and error) so I thought I'd ask the experts here. I'm planning a large formal ball and the PayPal button that was created using the site works fine, but my boss doesn't like dropdown menus, and prefers using radio buttons instead. So using previous forums for reference I inserted this: <form target="_blank" action="https://www.paypal.com/cgi-bin/webscr method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="PLACEHOLDER">
<table>
<tr><td>
<input type="hidden" name="on0" value="Ticket Quantity">Ticket Quantity</td></tr><tr><td>
<input name="os0" type="radio" value="1 Ticket -">One Ticket $51.75 USD</option><br/>
<input name="os0" type="radio" value="2 Ticket -">Two Ticket $103.20 USD</option><br/>
</td></tr>
<tr><td>
<input type="hidden" name="on1" value="Guest Name #1">Guest Name #1</td></tr>
<tr><td>
<input type="text" name="os1" maxlength="200">
</td></tr>
<tr><td>
<input type="hidden" name="on2" value="Guest Name #2">Guest Name #2</td></tr>
<tr><td>
<input type="text" name="os2" maxlength="200"></td></tr>
</table>
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form> The first option for one ticket works fine, but I'm receiving an error message for the second option. What do I need to do to get this working properly? Thanks in advance.
... View more