Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP Paypal Class

Could anybody recommend a up-to-date class (or payment system) for handling paypal recurring payments with PHP?

Thank you!


UPDATE: I ended up using the PaypalNVP class by Peter Reisinger. Unfortunately, that was a very long time ago and I can't seem to locate it online (the readme and class files had no URL - just the name). If you can find it, that's a great class and I highly recommend it.

like image 487
Yuval Karmi Avatar asked Nov 04 '09 21:11

Yuval Karmi


2 Answers

If you have the freedom to pick a gateway, pick one that provides recurring billing services and APIs to us them. I know authorize.net does.

You really, really, really, don't want to store credit card information. Really.

If you want to do a "save my information" kind of thing, find a vendor that supports storing the card details for you. Braintree does this, and I'm sure other vendors do as well.

like image 192
timdev Avatar answered Sep 30 '22 12:09

timdev


Just in case you are still interested in one. This one is working really great and extremely easy to implement:

http://www.micahcarrick.com/04-19-2005/php-paypal-ipn-integration-class.html

like image 28
Franz Avatar answered Sep 30 '22 11:09

Franz