![]() |
What's the best payment option to integrade with CI? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: What's the best payment option to integrade with CI? (/showthread.php?tid=889) |
What's the best payment option to integrade with CI? - behnampmdg3 - 01-26-2015 Hi; I am making a payment systems and I wonder what is a modern, easy to use, well documented option. I prefer user not leaving site like Paypal. I hear a lot about Braintree. Ideas? Thanks RE: What's the best payment option to integrade with CI? - dbui - 01-30-2015 Use Authorize.Net, they have PHP API for developer. I used this for my company project Regards RE: What's the best payment option to integrade with CI? - kilishan - 01-31-2015 Stripe is very good, also. To be fair, though, having them leave your site does wonders for mitigating your site's PCI Requirements, since those sites are already setup to meet the very strict requirements for processing credit cards. And always remember - never store the credit card number on your application unless you are going to meet those PCI requirements and be certified. Always use tokens from the processor if you can. Or send them to the external site so you don't have to worry about it at all. ![]() RE: What's the best payment option to integrade with CI? - Hobbes - 02-03-2015 Go back and check Paypal's API's. They are very robust and they do offer methods for full site integration (payments made without leaving your site). Although i do not use that method. I prefer using their IPN. |