Welcome Guest, Not a member yet? Register   Sign In
Cannot load libraries in controller methods, only constructor
#5

[eluser]tonanbarbarian[/eluser]
Have you tried using the PHP4 constructor type method instead
I have seen a few other posts like this and I think that generally solves the problem

Code:
Class MyController extends Controller
{
  function MyController()
  {
    parent::Controller();
  }

  function someMethod()
  {
    $this->load->library('validation');
    print_r($this->validation);
  }
}


Messages In This Thread
Cannot load libraries in controller methods, only constructor - by El Forum - 01-06-2008, 01:42 PM



Theme © iAndrew 2016 - Forum software by © MyBB