vote up 0 vote down star

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

Thank you!

flag

4 Answers

vote up 1 vote down

Paypal provides a very nice code snippet for processing paypal transactions, then it's just a matter of setting up a cron job that pulls from a DB what transactions to process.

link|flag
Would I have to store CC information the DB? Could you please provide a link to such snippets? Thank you :) – yuval Nov 4 at 21:42
You would have to store credit card information for a recurring payment like that, unless the paypal API now offers something like that, but it didn't last I was using it. Here's the link you asked for cms.paypal.com/us/cgi-bin/… . – Myles Nov 4 at 21:54
vote up 1 vote down

PHP Payment Library for Paypal, Authorize.net and 2Checkout:

http://www.phpfour.com/blog/2009/02/php-payment-gateway-library-for-paypal-authorizenet-and-2checkout/

link|flag
"basic usage only and do not contain options for recurring payments" - I am looking for a recurring payments supporting class – yuval Nov 9 at 23:47
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.