Welcome Guest, Not a member yet? Register   Sign In
"Main view"
#2

[eluser]cideveloper[/eluser]
This will work.

Check Returning views as data at the bottom.

controller

Code:
$db_results = "selection from db or something like this";
$data['content']= $this->load->view('subview', $db_results, true);
$this->load->view('mainview', $data);

view

Code:
<html>
  <head>
    ...
  </head>
  <body>
  <div class=“header”>...</div>
  <div class=“menu”>...</div>
  <div class=“menu”>&lt;?=$content?&gt;</div>
  <div class=“footer”>...</div>
  &lt;body&gt;
&lt;/html&gt;


Messages In This Thread
"Main view" - by El Forum - 05-06-2011, 01:34 PM
"Main view" - by El Forum - 05-06-2011, 11:40 PM
"Main view" - by El Forum - 05-07-2011, 12:26 PM
"Main view" - by El Forum - 05-14-2011, 06:36 PM
"Main view" - by El Forum - 05-14-2011, 11:50 PM
"Main view" - by El Forum - 05-15-2011, 07:14 AM



Theme © iAndrew 2016 - Forum software by © MyBB