load->model('model_music'); $this->load->helper('html'); $this->load->helper('url'); } public function index(){ $chansons = $this->model_music->getChansons(); $this->load->view('layout/header'); $this->load->view('chansons_list',['chansons'=>$chansons]); $this->load->view('layout/footer'); } }