Welcome Guest, Not a member yet? Register   Sign In
Problem with librarie
#1

[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.
#2

[eluser]Tom Schlick[/eluser]
there should not be a space in $this->CI = & get_instance();

make it this $this->CI =& get_instance();




Theme © iAndrew 2016 - Forum software by © MyBB