我試圖使用get_where來獲取所有者等於登錄用戶的所有數據庫記錄的列表。CodeIgniter get_where
這是我的功能在我的控制器;
function files()
{
$owner = $this->auth->get_user();
$this->db->get_where('files', array('owner =' => '$owner'))->result();
}
而在我看來,我有以下;
<?php foreach($query->result() as $row): ?>
<span><?=$row->name?></span>
<?php endforeach; ?>
當我嘗試訪問視圖,我得到的致命錯誤:調用一個成員函數結果()一個非對象在/views/account/files.php第1行
想知道是否有人對此有何看法?
感謝