この行の後、配列をビューに渡すと正常に動作します。
しかしforeach($rb_data as $row){<table>}?>
、<body>
テーブルの上では使用できません。コントローラーで使用してアレイを初期化しようとしましたが、うまくいきませんでした。ステートメントの前に使用できるように配列を初期化する他の方法はありますか? ご覧いただきありがとうございます。コントローラ:<h1><?php echo $rb_data['brand'];?></h1>
Message: Undefined index: brand
$data = array()
foreach
public function community_single($rb){
$data['rb_data'] = $this->rootbeer_model->community_single($rb);
$this->load->view('rb_community_single_view',$data);
}
モデル:
public function community_single($rb){
$this->rb_db->select('*');
$this->rb_db->from('rb_selection');
$this->rb_db->where('brand',$rb);
$query = $this->rb_db->get();
return $query->result_array();
}