Files
SAE_PHP_2024/CodeIgniter-3.1.13/application/controllers/Artistes.php

29 lines
882 B
PHP
Raw Normal View History

2024-05-22 12:04:00 +02:00
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Artistes extends CI_Controller {
public function __construct(){
parent::__construct();
$this->load->model('model_music');
}
public function index(){
2024-05-29 10:50:49 +02:00
if ($recherche=filter_input(INPUT_GET,'recherche') == false or $recherche=filter_input(INPUT_GET,'recherche') == null){
$artistes = $this->model_music->getArtistes();
}else{
2024-05-29 11:08:54 +02:00
$recherche=filter_input(INPUT_GET,'recherche');
2024-05-29 10:50:49 +02:00
$artistes = $this->model_music->getSearchArtistes($recherche);
}
2024-05-22 12:04:00 +02:00
$this->load->view('layout/header');
2024-05-29 10:50:49 +02:00
if ($artistes == false){
$page = preg_split('/[\/]/',$_SERVER['REQUEST_URI']);
2024-05-29 10:50:49 +02:00
$this->load->view('error',['page'=>$page[count($page)-1]]);
$artistes = $this->model_music->getArtistes();
}
2024-05-22 12:04:00 +02:00
$this->load->view('artistes_list',['artistes'=>$artistes]);
$this->load->view('layout/footer');
}
}