Paypal

helponthesite

Solid State Member
Messages
7
Hi. I was wondering if anyone knew how i could make a donation have a minimum amount on paypal. Heres the code i currently have:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="payment@buyacredit.com">
<input type="hidden" name="item_name" value="Movie Credit + Donation">
<input type="hidden" name="page_style" value="Primary">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="return" value="http://www.buyacredit.com/thankyou.html">
<input type="hidden" name="cancel_return" value="http://www.buyacredit.com/cancelpayment.html">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="tax" value="0">
<input type="hidden" name="lc" value="GB">
<input type="hidden" name="bn" value="PP-BuyNowBF">

If anyone could set this so that the minimum donation amount is £1 i would be most grateful. Thanks
 
You could write a script that'll check to make sure the amount is more than £1 before it submits the form.
 
Back
Top Bottom