codeigntierフレームワークを使用しているimデータベースから情報を取得する際の問題を解決しようとしています。例:
model.php:
public function read(){
$query = $this->db->get('table');
return $query->result();
}
controller.php:
public function doSomething () {
$exampleArray['name'] = "Bob's Database";
$getModel = $this->load->model('model','getData');
$modelData = $this->getData->read();
// i want to assign the the $modelData to a array element like so
$exampleArray['modelData'] = $modelData // here's where im stuck :(
}
ご協力いただきありがとうございます!!psこれはエラーではなく、単なる質問です:)
}