Welcome Guest, Not a member yet? Register   Sign In
Variable in view not the same in all pages.
#2

[eluser]CI_avatar[/eluser]
hello sb05. by default, when Ads controller is called it will execute the index function, right? so before you call
Code:
this->load->view('left_column_view', $data);
you must initialize
Code:
$data['ads']
.
as what I've observed in index function, you did not initialize
Code:
$data['ads']
variable
Code:
//include this code the check if your $data['ads'] is initialized
print_r($data['ads']);

// load view
$this->load->view('banner_view', $data);
$this->load->view('left_column_view', $data);
$this->load->view('right_column_view', $data);
$this->load->view('adList', $data);
$this->load->view('footer_view', $data);


Messages In This Thread
Variable in view not the same in all pages. - by El Forum - 01-13-2011, 07:35 PM
Variable in view not the same in all pages. - by El Forum - 01-13-2011, 09:14 PM
Variable in view not the same in all pages. - by El Forum - 01-14-2011, 04:24 AM
Variable in view not the same in all pages. - by El Forum - 01-14-2011, 04:40 AM
Variable in view not the same in all pages. - by El Forum - 01-14-2011, 04:49 AM
Variable in view not the same in all pages. - by El Forum - 01-14-2011, 04:52 AM
Variable in view not the same in all pages. - by El Forum - 01-14-2011, 04:52 AM
Variable in view not the same in all pages. - by El Forum - 01-14-2011, 05:44 AM
Variable in view not the same in all pages. - by El Forum - 01-14-2011, 06:01 AM
Variable in view not the same in all pages. - by El Forum - 01-15-2011, 06:47 PM
Variable in view not the same in all pages. - by El Forum - 01-15-2011, 08:46 PM
Variable in view not the same in all pages. - by El Forum - 01-16-2011, 05:35 PM
Variable in view not the same in all pages. - by El Forum - 01-16-2011, 05:48 PM
Variable in view not the same in all pages. - by El Forum - 01-17-2011, 06:54 AM
Variable in view not the same in all pages. - by El Forum - 01-17-2011, 09:10 AM
Variable in view not the same in all pages. - by El Forum - 01-17-2011, 11:01 AM
Variable in view not the same in all pages. - by El Forum - 01-17-2011, 11:08 AM
Variable in view not the same in all pages. - by El Forum - 01-17-2011, 11:31 AM



Theme © iAndrew 2016 - Forum software by © MyBB