Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class Invoice extends CI_Controller {
- function __construct(){
- parent::__construct();
- $this->load->model('M_invoice');
- }
- function index(){
- $data['ListInvoice'] =$this->M_invoice->TampilData();
- $data['page']='DataInvoice';
- $this->load->view('home',$data);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment