load->model('Model_site'); $film=$this->Model_site->get_fiche($id); $actors=$this->Model_site->get_actors($id); $data=array('film' => $film, 'actors' => $actors); $this->load->view('header'); $this->load->view('fiche',$data); $this->load->view('footer'); } }