2024-05-21 15:05:29 +02:00
|
|
|
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
|
2024-05-30 10:05:37 +02:00
|
|
|
class welcome extends CI_Controller {
|
2024-05-21 15:05:29 +02:00
|
|
|
|
2024-05-30 10:05:37 +02:00
|
|
|
public function __construct(){
|
|
|
|
parent::__construct();
|
|
|
|
$this->load->model('model_music');
|
2024-05-21 15:05:29 +02:00
|
|
|
}
|
2024-05-30 10:05:37 +02:00
|
|
|
public function index(){
|
|
|
|
$this->load->view('layout/header');
|
|
|
|
$this->load->view('layout/footer');
|
|
|
|
}
|
|
|
|
|
2024-05-21 15:05:29 +02:00
|
|
|
}
|