This is sending data to view in CodeIgniter:
public function index()
{
$data['header'] = "Home";
$this->load->view('admin_frontpage', $data);
}
And this is not:
public function index()
{
$this->data['header'] = "Home";
$this->load->view('admin_frontpage', $this->data);
}
Why?
In my view file I try to echo:
<?php echo $header; ?>
But only when using $data it is echoed. When using $this->data in controller, nothing is echoed out.
What am I doing wrong?