Advertisement
riandaka_

Untitled

Oct 27th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. class Overview extends CI_Controller {
  4.     public function __construct()
  5.     {
  6.         parent:: __construct();
  7.     }  
  8.  
  9.     public function index()
  10.     {
  11.         //load view admin/overview.php
  12.         $this->load->view("admin/overview");
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement