这是我的代码:
$this->load->model('login/configurations', '', TRUE);
$data['query'] = $this->configurations->load_data();
但我的查询未在此处加载:
$data['title'] = 'User Area';
$data['main_content'] = 'resources/logged_in_area';
$this->load->view('templates/resources_area', $data);
我认为这可能与我的模型的路径有关。 “Login”是“配置”所在文件夹的名称.title和main_content变量被加载到我的视图中。资源区域模板加载我的页眉,页脚和导航视图。所以我知道最后三行代码是有效的。这是前三个不起作用。
这是我的load_data函数:
function load_data() {
$query = $this->db->query("SELECT * FROM configurations WHERE username=" . $this->session->userdata('username'));
return $query;
}
有人有什么想法吗?我在视图中得到一个未定义的变量错误。 ($查询)