Welcome Guest, Not a member yet? Register   Sign In
is'this correct? (Load content from a view)
#22

[eluser]CI TaMeR[/eluser]
No you use one controller for 1 sometimes up to 3 views

For example one controller can control company info
the list of all companies in your database
the single view of one company
and a form to post and edit the content

This would take 3 view files one controller.

I share portions of the view file with all pages by having a
header.php, footer.php and style.css file so that the website looks the same all over.

I use this if I need to just view something and don't need any html, which is 90% of my pages.
Code:
<?php
$this->load->view('header');

echo $body;

$this->load->view('footer');

?>

I call it like this from the controller:
Code:
$this->tpl['body'] = $this->table->generate($Calc);
$this->load->view('blank', $this->tpl);

Otherwise my view pages look like this:
Code:
<?php
$this->load->view('header');

html goes here

$this->load->view('footer');

?>




If you need something more complex.
There is an add in library someone made to control view files. I found this one but there is a better one which I couldn't find. Searching is up to you.
layout_library


Messages In This Thread
is'this correct? (Load content from a view) - by El Forum - 08-05-2007, 10:04 AM
is'this correct? (Load content from a view) - by El Forum - 08-05-2007, 01:46 PM
is'this correct? (Load content from a view) - by El Forum - 08-05-2007, 07:27 PM
is'this correct? (Load content from a view) - by El Forum - 08-06-2007, 03:54 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 04:38 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 04:54 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 05:11 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 05:22 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 05:33 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 05:44 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 05:47 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 05:55 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 06:04 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 06:23 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 06:29 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 06:43 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 07:01 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 07:30 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 07:46 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 08:07 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 08:11 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 08:13 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 08:26 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 08:32 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 08:36 AM
is'this correct? (Load content from a view) - by El Forum - 08-07-2007, 08:44 AM



Theme © iAndrew 2016 - Forum software by © MyBB