anum
anum

Reputation:

Guidance related to Paypal Integration Using Codeigniter

I need some guidance related to PayPal Integration. It's not similar to a regular cart. After checkout, the site offers a form for payment option. Either it's PayPal, or some other payment process. The form directs to controller after the user submits. An array exists, which contains all item values.

From here on how can I proceed to the Paypal site?

Upvotes: 12

Views: 9843

Answers (3)

Alex Dean
Alex Dean

Reputation: 16125

Just to let you know that we've just open-sourced our replacement CodeIgniter PayPal library, called codeigniter-paypal-ipn. (We use this library in production.)

It performs more validation than PayPal_Lib, and it also saves the orders down to your database (using either CI active record or Doctrine).

I hope you find it useful!

Upvotes: 6

Ryan Schumacher
Ryan Schumacher

Reputation: 1886

There is an existing library for integration with Paypal using CodeIgniter:

http://codeigniter.com/wiki/PayPal_Lib/

Upvotes: 4

Related Questions