ajout fichier css + php, fusion - correction beug php

This commit is contained in:
2024-06-04 15:00:24 +02:00
parent e1831b92e8
commit ee261d214e
27 changed files with 240 additions and 430 deletions

View File

@@ -10,8 +10,8 @@ class Song extends CI_Controller {
public function view($album_id){
$songs = $this->model_music->getSongOfAlbum($album_id);
$this->load->view('layout/header_song');
$this->load->view('layout/header');
$this->load->view('song_album_list',['songs'=>$songs]);
$this->load->view('layout/footer_song');
$this->load->view('layout/footer');
}
}