Reputation: 36654
I want to add some kind of donate with paypal
to my website.
How can I implemet this?
I add a paypal
button and then
I need to call some paypal API method with my paypal email, right?
Upvotes: 1
Views: 1412
Reputation: 6600
You can create the Html button using the "Create a Button" wizard (will output an html form with the paypal parameters) without the need of calling Paypal's API or Paypal IPN.
https://www.paypal.com/us/cgi-bin/?cmd=_donate-intro-outside
Use Paypal API or IPN only if you want to track the incoming payment. For example: Give an extra service to a user that paid you.
Upvotes: 1