Advertisement
arifvoyager

controller dashboard

Nov 8th, 2019
173
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 Dashboard extends CI_Controller{
  4.  
  5.     function __construct(){
  6.         parent::__construct();
  7.    
  8.         if($this->session->userdata('status') != "login"){
  9.             redirect(base_url());
  10.         }
  11.     }
  12.  
  13.     function index(){
  14.         $this->load->view('dashboard.php');
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement