hi this is my controller :
public function index()
{
$data['menu'] = $this->load->view('frontend/menu/main_menu_view');
$this->load->view('frontend/header/header_view',$data);
$this->load->view('frontend/home/index_view');
}
and this is the code from the index_view view :
echo $menu;
but is not working, what should I do ? thx