Welcome Guest, Not a member yet? Register   Sign In
Header and footer
#5

[eluser]BravoAlpha[/eluser]
I'm new to CodeIgniter... I'm using something like this in my current project:

Example of a controller method:
Code:
function index()
{
// The rest of the controller...

$data['html_title'] = 'Example';
$data['html_views'] = array('welcome/index');
$this->load->vars($data);
$this->load->view('container');
}

container.php
Code:
<!-- Example -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><?php echo htmlspecialchars($html_title); ?></title>
<head>
<body>

<?php

foreach ($html_views as $html_view)
{
$this->load->view($html_view);
}

?>

</body>


Messages In This Thread
Header and footer - by El Forum - 07-13-2007, 01:33 PM
Header and footer - by El Forum - 07-17-2007, 05:32 PM
Header and footer - by El Forum - 07-18-2007, 05:44 AM
Header and footer - by El Forum - 07-18-2007, 12:42 PM
Header and footer - by El Forum - 07-19-2007, 09:14 PM
Header and footer - by El Forum - 07-20-2007, 07:15 AM
Header and footer - by El Forum - 07-20-2007, 07:38 AM
Header and footer - by El Forum - 07-20-2007, 09:10 AM
Header and footer - by El Forum - 07-23-2007, 06:11 AM
Header and footer - by El Forum - 07-27-2007, 03:10 AM



Theme © iAndrew 2016 - Forum software by © MyBB