[eluser]charlie spider[/eluser]
ya, my money says he's loading his header before loading the variables for it.
if you are doing this:
Code:
$this->data['header'] = load->view('header', $this->data, TRUE);
$this->data['keywords'] = $this->my_model->get_keywords();
$this->load->view('some_page', $this->data);
change it to this:
Code:
$this->data['keywords'] = $this->my_model->get_keywords();
$this->data['header'] = load->view('header', $this->data, TRUE);
$this->load->view('some_page', $this->data);