Templating in CodeIgniter, it’s mean we should make your own layouts system. If you have using CakePHP before, then you see there no automatic templating views in CodeIgniter. After searching and compare with anothers, i get Philsturgeon template is near with CakePHP template system ( http://getsparks.org/packages/template/show ).
So, first step, download and install it. See the installation guide to make your step easier. I assume you have installed the template into your CodeIgniter successfully. I load this template system in autoload.php [cci lang="php"]$autoload['libraries'] = array(‘database’,'session’,'template’);[/cci].
Continue reading