Ive tried to get this working like the one in the link below but cant,everything works but the one time donation dont show the amount when you submit <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick-subscriptions"> <!--You will need to set the email to your PayPal email or Secure Merchant ID --> <input type="hidden" name="business" value="myemail@domain.com"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="item_name" value="Donate to My Organization"> <input type="hidden" name="item_number" value="1234"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="no_shipping" value="2"> <input type="hidden" name="src" value="1"> <input type="hidden" name="p3" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="bn" value="PP-SubscriptionsBF:btn_subscribeCC_LG.gif:NonHosted"> <table> <tr><td>When would you like this to Recur?</td></tr> <tr> <td>Name</td> </tr> <tr> <tr><td><input type="text" name="os0" maxlength="60"><input type="hidden" name="on0" value="Name"></td></tr> </tr> <tr><td><select name="t3"> <option value="" selected>One Time (Not recurring)</option> <option value="W">Weekly</option> <option value="M">Monthly</option> <option value="Y">Yearly</option> </select> </td></tr> <tr></tr><tr></tr> <tr><td>Enter Your Donation Amount</td></tr> <tr><td><input type="text" name="a3" maxlength="60"></td></tr> </table> <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"> </form> PHP:
Hi, Perhaps this could help you : <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick"> <!--You will need to set the email to your PayPal email or Secure Merchant ID --> <input type="hidden" name="business" value="myemail@domain.com"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="item_name" value="Donate to My Organization"> <input type="hidden" name="item_number" value="1234"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="no_shipping" value="2"> <input type="hidden" name="src" value="1"> <input type="hidden" name="p3" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="bn" value="PP-SubscriptionsBF:btn_subscribeCC_LG.gif:NonHosted"> <table>  <tr><td>When would you like this to Recur?</td></tr>  <tr><td>Name</td></tr>  <tr>  <tr><td><input type="text" name="os0" maxlength="60"><input type="hidden" name="on0" value="Name"></td></tr>  </tr>  <tr>   <td>    <select name="t3">    <option value="" selected>One Time (Not recurring)</option>    <option value="W">Weekly</option>    <option value="M">Monthly</option>    <option value="Y">Yearly</option>    </select>   </td>  </tr>  <tr></tr>  <tr></tr>  <tr><td>Enter Your Donation Amount</td></tr>  <tr><td><input type="text" name="amount" maxlength="60"></td></tr> </table> <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way topay online!"> <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"> </form> PHP: I've changed the : <input type="hidden" name="cmd" value="_xclick-subscriptions"> to <input type="hidden" name="cmd" value="_xclick"> <input type="text" name="a3" maxlength="60"> to <input type="text" name="amount" maxlength="60">