[eluser]Browser[/eluser]
Hello, i have created a librarie but i have a problem.
This is the code:
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
class Conf_Lib {
public $configuracion=array();
function Conf_Lib() {
$this->CI = & get_instance();
$this->CI->db->get('configuracion');
$this->informacion();
}
function informacion() {
}
}
?>
Fatal error: Call to a member function get() on a non-object in /var/www/searchmedic2/application/libraries/conf_lib.php on line 10
Why?
Thanks you.