Welcome Guest, Not a member yet? Register   Sign In
codeigniter calling show_error from a library
#2

[eluser]InsiteFX[/eluser]
When using Libraries you need to get the CI Super Object! You do not need to include other files!
Code:
class lib {

    private $_ci;

    public function __construct()
    {
        parent::__construct();

        $this->_ci = get_instance();
    }

}

// $this->_ci->show_error('etc');

InsiteFX


Messages In This Thread
codeigniter calling show_error from a library - by El Forum - 05-25-2011, 12:31 PM
codeigniter calling show_error from a library - by El Forum - 05-25-2011, 03:14 PM



Theme © iAndrew 2016 - Forum software by © MyBB