first commit

This commit is contained in:
alazhar
2020-01-02 23:12:35 +07:00
commit 1b7f223f9d
362 changed files with 110045 additions and 0 deletions

View File

@ -0,0 +1,16 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Member extends CI_Controller {
function __Construct()
{
parent ::__construct();
$this->load->model('Barang');
$this->load->model('Kategori');
}
public function index()
{
}
}