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

16 lines
315 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class welcome extends CI_Controller {
public function __construct(){
parent::__construct();
$this->load->model('model_music');
}
public function index(){
$this->load->view('layout/header');
$this->load->view('layout/footer');
}
}