遇到PHP错误严重性:通知消息:未定义属性:ViewProfile :: $ Profile_model

时间:2016-02-10 11:59:34

标签: php codeigniter

Image of error

上图包含运行项目时发生的错误。

正如建议的那样,我尝试包含以下代码:

  

$ autoload ['libraries'] = array('database');

但它没有任何结果,事实上它显示了另一个错误

  

遇到错误您指定了无效的数据库连接组。

请,请提供解决方案。

error that occured on applying the suggested code.

1 个答案:

答案 0 :(得分:0)

在你的控制器中添加像

这样的构造函数
class Landing extends CI_Controller {

    public function __construct()
    {
        parent::__construct();
        $this->load->library('session');
        $this->load->helper('form');
        $this->load->helper('url');
        $this->load->helper('html');
        $this->load->database();
    }
}

然后在我们的模型文件中尝试执行类似

的查询
$this->db->select('*')->from('tablename');
$where = array('email' => $email);
$this->db->where($where);

$query = $this->db->get();
$resultId = $query->result_id;      
$row_count = $resultId->num_rows;

希望这对你有帮助。