Welcome Guest, Not a member yet? Register   Sign In
Calling functions inside library
#1

[eluser]Unknown[/eluser]
I have a library looking like this

class Anylibrary {
private $CI;

public function __construct()
{

$this->CI =& get_instance();


}

public function test()
{

echo $this->CI->hello();

}

public function hello() {

return "hello world";
}

}


I am not able to call function Hello from inside function test. Any ideas why?







Theme © iAndrew 2016 - Forum software by © MyBB