You've already forked ci_restful
14 lines
175 B
PHP
14 lines
175 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class Barangaja extends CI_Controller{
|
||
|
|
function __construct()
|
||
|
|
{
|
||
|
|
parent::__construct();
|
||
|
|
|
||
|
|
}
|
||
|
|
function index(){
|
||
|
|
$this->load->view('add');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|