SAEWEB2.2/ci/application/controllers/Artistes.php

17 lines
425 B
PHP
Raw Normal View History

2024-05-23 11:41:06 +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(){
$artistes = $this->model_music->getArtists();
$this->load->view('layout/header');
$this->load->view('artistes_list',['artistes'=>$artistes]);
$this->load->view('layout/footer');
}
}