Posts

Running project in codeigniter step by step explanation

1.To start codeigniter framework, you should know basics of core php.. 2.First download codeigniter from main website codeigniter.com and extract it, 3.From extracted folder you can see application, system, index.php and so on., creating project 4.lets start, create a project name ci in htdocs wherever your xammp installation done(ie.,folder structure should be D:xammp/htdocs/ci)..! 5.inside ci folder copy 3 files/folders of 1.application, 2.system, 3.index.php from codeigniter folder which you are downloaded from codeigniter website. 6.How to run project in browser step1:run localhost/ci/ loads welcome_message.php page(in views folderstructure application/controller/index) ; step2:see now how above project works: actual link is localhost/ci/index.php/Welcome/index  Here CI indicates project folder name, and  index.php:index.php is main file if you want access any part of the application , it can access only through index.php file Welcome: is controller name and ...