1

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

Community
  • 1
  • 1
Bob Cavezza
  • 2,810
  • 7
  • 38
  • 56

2 Answers2

2

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.

Dan
  • 537
  • 2
  • 7
1

I used the NVP API to do that.

jwueller
  • 30,582
  • 4
  • 66
  • 70