first commit

This commit is contained in:
alazhar
2020-01-02 22:54:01 +07:00
commit 0e423e1115
196 changed files with 54467 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?php
class Barangaja extends CI_Controller{
function __construct()
{
parent::__construct();
}
function index(){
$this->load->view('add');
}
}
?>