Elad Benda
Elad Benda

Reputation: 36654

how to add "donate" button with PayPal

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

Answers (1)

jorgebg
jorgebg

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

Related Questions