Buy Now button with a selection for the number of tickets requested

31 Views Asked by At

I want to place an html form on a page that has a drop-down selection for the number of tickets requested e.g. 1 - 8.

I am new to doing this type of PayPal input. A link to an example would be appreciated.

Thank you for your assistance...

Todd Cary

1

There are 1 best solutions below

2
On

A simple drop down selection can be done like this:

<select>
  <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>
</select> 

Sample: http://jsfiddle.net/theStudent/E5v66/