I have some questions about View in Codeigniter.
How do I build up my design and how do I return it later? I would like to build my header, main content and menu, footer and more.
To build up a design and then copy it into every new view I created does not feel like a good solution. If I change something in the footer, the change takes effect for the entire website.
Does anyone have any link to any good guide how to make the best use out of view or explain in a good way here.
Your feeling is right, it’s not a good idea at all. That’s why most people use some kind of templating system in conjunction with their View.
I used to use this library : http://williamsconcepts.com/ci/codeigniter/libraries/template/ (used to, because I don’t code much in CI anymore)
It’s never given me trouble and it’s pretty easy to setup.