Welcome Guest, Not a member yet? Register   Sign In
Dynamical content loading question
#4

[eluser]cereal[/eluser]
I use a similar approach, without templates:

Code:
function index()
{
    $data['title'] = 'my homepage';
    $this->db->limit(1);
    $data['query'] = $this->db->get('news');
    $this->load->view('/common/head', $data);
    $this->load->view('/index', $data);
    $this->load->view('/common/foo', $data);
}


Messages In This Thread
Dynamical content loading question - by El Forum - 01-06-2009, 09:27 AM
Dynamical content loading question - by El Forum - 01-06-2009, 09:41 AM
Dynamical content loading question - by El Forum - 01-06-2009, 10:05 AM
Dynamical content loading question - by El Forum - 01-06-2009, 11:05 AM
Dynamical content loading question - by El Forum - 01-06-2009, 12:15 PM
Dynamical content loading question - by El Forum - 01-06-2009, 01:17 PM
Dynamical content loading question - by El Forum - 01-06-2009, 01:44 PM
Dynamical content loading question - by El Forum - 01-06-2009, 04:30 PM
Dynamical content loading question - by El Forum - 01-06-2009, 05:19 PM



Theme © iAndrew 2016 - Forum software by © MyBB