Development Wall

help for php, codeigniter, javascript, jquery, mysql, apache, ubuntu

Archives for the ‘Codeiniter’ Category

Introduction to CodeIgniter-Part 1

By • Apr 12th, 2012 • Category: Codeiniter

PHP has many open source web application framework and CodeIgniter is one of  the most popular, easy, flexible and extendable MVC framework among all others framework. CodeIgniter can be used from small web site to large scale complex web application. With CodeIgniter, you can save time, make your web application more robust, your code will [...]



How to put Controller inside Multi Level directory or Subfolder in CodeIgniter

By • Apr 8th, 2012 • Category: Codeiniter

By default Codeigniter does not have the support to put Controller inside Multi Level directory or Sub Folder, but still you can do this. You just need to create your own Routing class which will extend the CI_Router. Follow the bellow steps: 1. create a php file with name MY_Router.php and put in inside application/libraries directory 2. [...]



Easy way to remove index.php file from Codeigniter

By • Mar 22nd, 2012 • Category: Codeiniter, PHP

Clean url is very important for today’s web applications. Search engine gives higher  priority for the sites which have clean url. Codeigniter is one of the most popular PHP  framework. By default it shows index.php page in the url. By default it will show the url like  http://localhost/my-application-name/index.php/news/hello I will show very easy way to [...]



Creating multiple database connection in codeigniter

By • Mar 9th, 2012 • Category: Codeiniter, PHP

If you are working in codeigniter, it may need to use multiple database connection for a single application In bellow tutorial  I will show how to create more then one database connection in codeigniter and use the connection in Model to perform  database operation. I am going  create 2 database connection one for read operation [...]