css + resolution de bug php

This commit is contained in:
2024-05-30 10:05:37 +02:00
parent a0af043f68
commit f7d8c15910
27 changed files with 747 additions and 105 deletions

View File

@@ -9,9 +9,9 @@ class Albums extends CI_Controller {
}
public function index(){
$albums = $this->model_music->getAlbums();
$this->load->view('layout/header');
$this->load->view('layout/header_chanson');
$this->load->view('albums_list',['albums'=>$albums]);
$this->load->view('layout/footer');
$this->load->view('layout/footer_chanson');
}
}