我在線查看有關從CI模型中檢索數據的示例。我在這裏尋找答案,因爲我的問題似乎很容易,但我嘗試的每個示例仍然給我消息:未定義變量:更新和消息:爲foreach提供的無效參數。有任何想法嗎?CI在foreach循環中給出未定義的變量
型號:
function list_updates(){
return this->db->get('updates')->result();
}
控制器
public function index()
{
$this->load->model('updates_model');
$data = array();
$data['updates'] = $this->updates_model->list_updates(); // if i do print_r before render, the data displays in the view (but not formatted correctly)
$this->_render('pages/publicfeed', $data);
}
查看
<div id="message_count" style="margin-left:40%;">
<?php
foreach ($updates as $up){
echo $up->update;
}
?>
</div>
嘗試的print_r($這個 - > updates_model-> list_updates()),並進行調試 –