db->insert_batch('student', $data); } function dataEntry($data, $tablename) { $this->db->insert($tablename, $data); } function getTable($data) { $query = $this->db->list_fields($data); return $query; } /* function headerExist($data, $table) { foreach ($data as $data) { if ($this->db->field_exists($data, $table)) { $booleanValue[] = 'true'; } else { $booleanValue[] = 'false'; } } if (array_search('false', $booleanValue)) { return FALSE; } else { return TRUE; } } */ function headerExist($data, $table) { foreach ($data as $data1) { if ($this->db->field_exists($data1, $table) || $this->db->field_exists($data1, 'users')) { $booleanValue[] = 'true'; } else { $booleanValue[] = 'false'; } } if (array_search('false', $booleanValue)) { return FALSE; } else { return TRUE; } } } ?>