Exemplo n.º 1
0
 public function viewAllStudents()
 {
     $this->load->model('users_model');
     $p = new Users_model();
     $data['users'] = $p->viewAllStudents();
     $this->load->view('includes/header');
     $this->load->view('includes/banner');
     $this->load->view('staff/staff-menu');
     $this->load->view('staff/view-users', $data);
 }