session->set_userdata('top_menu', 'Time_table'); $student_current_class = $this->customlib->getStudentCurrentClsSection(); $student_id = $this->customlib->getStudentSessionUserID(); $student = $this->student_model->get($student_id); $days = $this->customlib->getDaysname(); $days_record = array(); foreach ($days as $day_key => $day_value) { $days_record[$day_key] = $this->subjecttimetable_model->getparentSubjectByClassandSectionDay($student_current_class->class_id, $student_current_class->section_id, $day_key); } $data['timetable'] = $days_record; $this->load->view('layout/student/header', $data); $this->load->view('user/timetable/timetableList', $data); $this->load->view('layout/student/footer', $data); } }