olshop/application/controllers/Member.php

17 lines
278 B
PHP
Raw Normal View History

2020-01-02 23:12:35 +07:00
<?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()
{
}
}