load->model('model_music'); } public function index(){ $genre = $this->input->get('genre'); $order = $this->input->get('order'); $artists = $this->model_music->getArtists($genre, $order); $genres = $this->model_music->researchtype(); $is_logged_in = $this->session->userdata('logged_in'); $data = array( 'artists' => $artists, 'genres' => $genres, 'is_logged_in' => $is_logged_in ); $this->load->view('layout/header', $data); $this->load->view('artistes_list', $data); $this->load->view('layout/footer'); } }