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