You can actually add a couple of other form elements to a PayPal button, like a drop down list etc. In the PayPal setup page for a button there are options for (I think) two extra fields. Or you can just use some default code ... such as:
Code:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<div>
<label>Is this in memory of someone?</label>
<input type="hidden" name="on0" value="In memory of someone?">
<select name="os0">
<option value="no">No</option>
<option value="one">Person One</option>
<option value="two">Person Two</option>
<option value="three">Person Three</option>
<option value="four">Person Four</option>
</select>
</div>
<div class="submit">
<input type="submit" value="Donate">
</div>
<div>
PP hidden default code here
</div>
</form>
I think there's also a text box option.
Bookmarks