db->get_where('settings' , array('type' => 'running_year'))->row()->description; ?>
: | crud_model->get_type_name_by_id('subject',$row['subject_id']);?> |
---|---|
: | crud_model->get_type_name_by_id('class',$row['class_id']);?> |
: | crud_model->get_type_name_by_id('section',$row['section_id']);?> |
: | db->where('class_id', $row['class_id']); $this->db->where('section_id', $row['section_id']); echo $this->db->count_all_results('enroll');?> |
: | db->where('class_id', $row['class_id']); $this->db->where('section_id', $row['section_id']); $this->db->where('homework_code', $homework_code); echo $this->db->count_all_results('deliveries');?> |
: | db->where('class_id', $row['class_id']); $this->db->where('section_id', $row['section_id']); $all = $this->db->count_all_results('enroll');?> db->where('class_id', $row['class_id']); $this->db->where('section_id', $row['section_id']); $this->db->where('homework_code', $homework_code); $deliveries = $this->db->count_all_results('deliveries');?> |