Решение 1. Вам необходимо вернуть данные для контроллера
public function get_by(){
$this->db->select('*');
$this->db->from('filiere');
$this->db->join('module', 'module.code_filiere = filiere.code_filiere');
$query = $this->db->get();
return $query->result();
}
В контроллере
$data = $this->your_model->get_by();
Решение 2. Вам необходимо вернуть данные для контроллера
public function get_by(){
$this->db->select('*');
$this->db->from('filiere');
$this->db->join('module', 'module.code_filiere = filiere.code_filiere');
$query = $this->db->get();
return $query;
}
В контроллере
$data = $this->your_model->get_by()->result();
Из документа