Bob Cavezza
Bob Cavezza

Reputation: 2850

How to use Paypal Standard in a web application with PHP

I'm looking for a way to build a web application using paypal payments standard. I'd like the user to get redirected to paypal, then fill out their information, and upon completion, add a value in our database saying that they successfully paid. I haven't found a solution or answer to this.

I found this thread for RoR, but didn't find anything for PHP

Paypal Website Payments Standard with a Ruby/Rails application

Upvotes: 1

Views: 2036

Answers (2)

Dan
Dan

Reputation: 537

You can see instructions for a Payment Data Transfer at PayPal's site. Basically, you post the transaction amount and an ID token to their site, the customer pays on paypal.com, and then they're sent back to a pre-defined URL on your site with the transaction details.

Upvotes: 2

jwueller
jwueller

Reputation: 30996

I used the NVP API to do that.

Upvotes: 1

Related Questions