17 lines
278 B
PHP
17 lines
278 B
PHP
|
<?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()
|
||
|
{
|
||
|
}
|
||
|
}
|