This commit is contained in:
Yann KERAUDREN 2024-05-29 15:19:54 +02:00
parent f504d172fc
commit 1c1333d4ed
4 changed files with 8 additions and 5 deletions
codeigniter/application

@ -23,7 +23,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
| a PHP script and you can easily do that on your own. | a PHP script and you can easily do that on your own.
| |
*/ */
$config['base_url'] = ''; $config['base_url'] = '/~keraudre/PHP/SAE_DEV2.2_2024';
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------

@ -76,9 +76,9 @@ $query_builder = TRUE;
$db['default'] = array( $db['default'] = array(
'dsn' => '', 'dsn' => '',
'hostname' => 'localhost', 'hostname' => 'localhost',
'username' => '', 'username' => 'keraudre',
'password' => '', 'password' => 'Keraudren97233',
'database' => '', 'database' => 'keraudre',
'dbdriver' => 'mysqli', 'dbdriver' => 'mysqli',
'dbprefix' => '', 'dbprefix' => '',
'pconnect' => FALSE, 'pconnect' => FALSE,

@ -49,6 +49,6 @@ defined('BASEPATH') OR exit('No direct script access allowed');
| Examples: my-controller/index -> my_controller/index | Examples: my-controller/index -> my_controller/index
| my-controller/my-method -> my_controller/my_method | my-controller/my-method -> my_controller/my_method
*/ */
$route['default_controller'] = 'welcome'; $route['default_controller'] = 'albums';
$route['404_override'] = ''; $route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE; $route['translate_uri_dashes'] = FALSE;

@ -6,6 +6,9 @@ class Albums extends CI_Controller {
public function __construct(){ public function __construct(){
parent::__construct(); parent::__construct();
$this->load->model('model_music'); $this->load->model('model_music');
$this->load->helper('html');
$this->load->helper('url');
$this->load->helper('form');
} }
public function index(){ public function index(){
$albums = $this->model_music->getAlbums(); $albums = $this->model_music->getAlbums();