CodeIgniter Forums
Compose dynamic page with different views - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Compose dynamic page with different views (/showthread.php?tid=31513)



Compose dynamic page with different views - El Forum - 06-22-2010

[eluser]Unknown[/eluser]
Hi All,

Example:
I have index.php which contains 3 views such as #header, #content and #footer. #content view contains more nested views #menu, #rss, #articles, #news.

When i open the page i see all mentioned views. When i click on a link, for example some of the article, i should see following page:
#header
#content
#menu
#rss
#news
#full_article
#footer

So i want somehow dynamically compose returned page. What are the best practices for that?