Posts

Showing posts from 2010

Codeigniter (CI) for PHP rapid development

CI is excellent for PHP developers who have not used a MVC (Model View Controller) framework. Model : Database and data related functions,like SQL queries returning rows etc. View : The HTML page having tags where you can insert values derived from model functions. There is inbuilt parser for inserting values. You can also use smarty here. Controller : The single point of controlling script. CI has a very well written user guide which is easy to follow. Best for developers starting on MVC PHP architecture. I will post example scripts here.