codeigniter_test/application/controllers/index.php

13 lines
171 B
PHP
Raw Normal View History

2020-01-02 22:49:45 +07:00
<?php
class Index extends CI_Controller{
function __Construct()
{
parent ::__construct();
}
function index()
{
$this->load->view('index');
}
}