Tuesday, May 4, 2010

Pick list of multiple campaigns

We recently had a question from someone looking to have an advanced drop down list of campaigns to track separate totals, along with pre-filling out the donation amount, and asking if the donor wants to remain anonymous. The first option list uses the donation web address from the donation button generated on DonationsTracker.com. And this is all put on your own website (modified to look as needed), and the donor will be automatically clicked through to PayPal as all the options are pre-entered.


<form action =" http://www.donationstracker.com/donate.php" method="post">
<input type="hidden" name="v" value="1.1">
<p>For:
<select name="donate">
<option value="c3f03bee5983e71b5dc1c2ac1b0fedef&cid=14&vid=15&uid=1">The Euro Fund</option>
<option value="74ad8848a1190545a6745950af847be2&cid=16&vid=17&uid=1">The Pound Fund</option>
</select></p>

<p>Anonymous?
<select name="anonymous">
<option value="no">No</option
<option value="anonymous">Yes</option
</select>
</p>

<p>Amount: $
<input type="text" name="amount" size="8" maxlen="15"></p>

<input type="submit" name="submit" value="Donate">
</form>



Demo:


For:



Anonymous?



Amount: $




No comments: