私は私の見解では、このエラーを持っているし、問題となっている場所を見つけることができません。未定義の変数(CodeIgniterの)
MYコントローラ名 '質問':
public function show_all_question_set() {
$data = array();
$data['question_set'] = $this->Question_Model->select_all_question_set();
$this->load->view('question/make_set', $data);
}
私のモデル名「Question_Model 「:
public function select_all_question_set() {
$this->db->select('*');
$this->db->from('tbl_question_set');
$query_result = $this->db->get();
$result = $query_result->result();
return $result;
}
マイビュー名 'make_set':
<?php
foreach ($question_set as $all_set) {
?>
<tr>
<td align="center">
<a href="#" class="btn btn-default"><em class="fa fa-pencil"></em></a>
<a href="#" class="btn btn-danger"><em class="fa fa-trash"></em></a>
</td>
<td> <?php echo $all_set->exam_name; ?> </td>
<td> <?php echo $all_set->subject_name; ?> </td>
<td> <?php echo $all_set->set_name; ?> </td>
<td align="center">
<a href="#"class="btn btn-default"><em class="fa fa-book"> দেখুন </em></a>
</td>
</tr>
<?php } ?>
表:tbl_question_set(set_id、EXAM_NAME、subject_name、SET_NAME)
A PHPエラーが 重要度発生しました: メッセージを注意:未定義の変数を:question_setを ファイル名:/ make_set.php 行番号質問:90 – Rashed
だから、ライン90である?? – Sparky
Line 90:foreach($ question_set as $ all_set){ – Rashed