codeigniter - Undefined property: my_controller::$db -


severity: notice

message: undefined property: my_controller::$db

filename: libraries/session.php

line number: 88

use

$this->load->database(); 

before database operation. or open application/config/autoload.php , search

$autoload['libraries'] = array(); replace to

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

Popular posts from this blog

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -