Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3.  
  4. class Murid extends Web_controller {
  5.    
  6.     public function __construct()
  7.     {
  8.         parent::__construct();
  9.        
  10.         $this->load->model('web/murid_model');
  11.     }
  12.    
  13.     public function index()
  14.     {      
  15.         $this->render_view('murid', $this->vars);
  16.     }
  17.  
  18. } // end class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement