resolution bug

This commit is contained in:
2024-05-30 10:33:06 +02:00
parent f7d8c15910
commit d980568035
3 changed files with 9 additions and 2 deletions

View File

@@ -14,4 +14,11 @@ class artistes extends CI_Controller {
$this->load->view('layout/footer_artistes');
}
public function view($AlbumsOfArtistId){
$AlbumsOfArtist = $this->model_music->getAlbumsOfArtist($AlbumsOfArtistId);
$this->load->view('layout/header_artistes');
$this->load->view('albums_artist_list',['AlbumsOfArtist'=>$AlbumsOfArtist]);
$this->load->view('layout/footer');
}
}