Код: Выделить всё
$batchpost = $this->input->post('batch');//print_r($batch);
$batch_id = '';
for ($i = 0; $iadmin_model->get_attendance_datatables($batch);
Код: Выделить всё
$this->db->select('offline_student.*,batch.batch_name,offline_course.course');
$this->db->from($this->table8);
$this->db->join('offline_course', 'offline_course.id = offline_student.course', 'left');
$this->db->join('batch', 'batch.id = offline_student.batch', 'left');
$this->db->where('offline_student.status', 'Active');
$this->db->where_in('batch.id', $batch);
$this->db->order_by('offline_student.id', 'asc');
Подробнее здесь: https://stackoverflow.com/questions/511 ... comma-sepa