[eluser]InsiteFX[/eluser]
Code:
// Your setting:
$data['total']=$this->Mc_home->getTotal();
But when you use $data in a view you just use $total CI handles this for you!
Instead of this in a view
$data['total']; <-- see total in $data. in your view you just add a $total
You only need to do this:
$total
Code:
$data = array();
$data['item'] = 'Me';
$this->load->view('your_view', $data);
InsiteFX