I'm trying to implement a portlet type of view, where you can include multiple controller views on one page.
For example, I have a LoginController that displays a userid/passwd box. I have a CategoryController that displays all categories in a box. I have a PollController that displays a survey box and so on and so forth.
On the home page, I want to include all 3 (or more) views of the controllers... i.e.
<html><body>
<?php include="http://servername/x/logins" ?> (renders logins/index.thml)
<?php include="http://servername/x/categories" ?> (renders categories/index.thml)
<?php include="http://servername/x/polls" ?> (renders polls/index.thml)
......
</body></html>
I was able to get this to render the layout successfully in Firefox (but not IE). However, the Session information gets "lost". I think the reason is because of the "http://servername..." ? ? ?
Is there an alternative approach to achieving this type of view design ?