codeigniter_test/application/controllers/index.php
2020-01-02 22:49:45 +07:00

13 lines
171 B
PHP

<?php
class Index extends CI_Controller{
function __Construct()
{
parent ::__construct();
}
function index()
{
$this->load->view('index');
}
}