In CodeIgniter, or core PHP; is there an equivalent of Rails\'s view partials and templates?
A partial would let me render another view fragment inside my view. I co
This is unfortunately not CodeIgniter specific at all, however I suggest you to have a look at Savant3 template system. It allows you to render the template to a string. Then you can simply stuck it to wherever you wish.
Maybe there's something like that in CodeIgniter?
I can think of a way to add a facility when rendering the view, to render the template, and then all the sub-template it contains.