ci_restful/application/controllers/barangaja.php

14 lines
175 B
PHP
Raw Permalink Normal View History

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