私は現在私のコントローラーにあることをprint_r
示す次のモデルを持っていますが、上記のアレイをこれに組み込む方法がわかりません。Array ( [id] => 1 [cms_name] => Content Mangement System )
$data['contentMangement'] = $this->model->function
function systemOptions($options)
{
$this->db->select($options);
$query = $this->db->get('options');
if($query->num_rows() > 0)
{
$row = $query->row_array();
$row['cms_name'];
}
print_r($row);
return $query->result_array();
}