Codeigniter | Paypal Integration

By:Nithin K Varrier Here is a simple tutorial for integrating Paypal with your Codeigniter project. For easiest integration of Paypal you need to download paypal lib. Extract the downloaded zip file. Copy Paypal_Lib.php from paypal_lib->application->libraries and paste this file to your application->libraries. One more file you need to copy. That is paypallib_config.php from paypal_lib->application->config and paste thisContinue reading “Codeigniter | Paypal Integration”

How to remove index.php in Codeigniter URL

By default, the index.php file will be included in your URLs: example.com/index.php/news/article/my_article You can easily remove this file by using a .htaccess file with some simple rules. Here is an example of such a file, using the “negative” method in which everything is redirected except the specified items: In the above example, any HTTP request other thanContinue reading “How to remove index.php in Codeigniter URL”

A Quick Code Igniter and JQuery Ajax Tutorial

This tutorial assumes a basic working knowledge of Code Igniter. If you have never used CI before, please refer to the framework documentation In the old days (2 years ago), working the Javascript magic to create a cool AJAX based event took a fairly decent working knowledge of the mechanisms behind the process. With theContinue reading “A Quick Code Igniter and JQuery Ajax Tutorial”