Ajout del'inscription, connection et deconnection avec bd

This commit is contained in:
2024-06-09 17:31:35 +02:00
parent 6ff83097b2
commit c61c485651
9 changed files with 147 additions and 67 deletions

View File

@@ -11,19 +11,14 @@ class Albums extends CI_Controller {
$this->load->helper('html');
$this->load->helper('url');
$this->load->helper('form');
$this->filter = $this->input->get('filter');
}
public function index(){
if ($this->filter == "co") {
$this->load->view('layout/header');
$this->load->view('new_user');
}else{
$albums = $this->model_music->getAlbums();
$this->load->view('layout/header');
$this->load->view('albums_list',['albums'=>$albums]);
$this->load->view('layout/footer');
}
}
}