album(s) des artistes

This commit is contained in:
2024-05-28 11:34:30 +02:00
parent 63937f0b53
commit c98f0758c8
6 changed files with 54 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Song extends CI_Controller {
public function __construct(){
parent::__construct();
$this->load->model('model_music');
}
public function view($album_id){
$songs = $this->model_music->getSongOfAlbum($album_id);
$this->load->view('layout/header');
$this->load->view('song_album_list',['songs'=>$songs]);
$this->load->view('layout/footer');
}
}