CODEIGNITER

CodeIgniter is an open source web application framework for use in building dynamic web sites with PHP. “Its goal is to enable [developers] to develop projects much faster than…writing code from scratch, by providing a rich set of libraries for commonly needed tasks, as well as a simple interface and logical structure to access these libraries.”
wikipedia.

after installing the latest CodeIgniter, then the first step is to edit the config file in the application folder /config /config.php

base_url config change as needed, change from

$config['base_url']    = "http://example.com";

To your Codeigniter install folder, like

$config['base_url']  = "http://localhost/ci_project";

Or (expert) Continue Reading →