[eluser]InsiteFX[/eluser]
Code:
<?php
class Home extends CI_Controller {
public function __construct() {
parent::__construct();
// Initializes connection data
$data['connection'] = array(
'logged' => TRUE,
'username' => 'duarte',
);
if ($data['connection']['logged'] == TRUE) {
$this->load->view('templates/logged',$data);
} else {
$this->load->view('templates/login');
}
}
}
You should moce the view stuff to the index method.