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