Very, very well done. I love the addition of Subscriptions to this.
I've modified the template
donation_paypal to allow pulldown choices for my donations and subscriptions (see
http://www.puritanboard.com/donate.php)
Find:
PHP Code:
<input type="text" name="amount" size="8"/>
Replace with
PHP Code:
<select name="amount">
<option value="10">10</option>
<option value="20">20</option>
<option value="50">50</option>
<option value="100">100</option>
<option value="500">500</option>
</select>
You'll need to set the values and the amounts between the option tags to correspond to your donation selecitons.
Find:
PHP Code:
<input type="text" name="a3" size="8"/>
Replace with:
PHP Code:
<select name="a3">
<option value="5">5</option>
<option value="10">10</option>
<option value="20">20</option>
<option value="25">25</option>
<option value="50">50</option>
</select>
Once again, changing the values to correspond to what you want the user to select.