Welcome Guest, Not a member yet? Register   Sign In
issue with controllers Help!!! :(
#11

[eluser]DJMOHNL[/eluser]
[quote author="CI_avatar" date="1261469663"]you did not initialize your controller

Code:
class Blog extends Controller
{
   //you missed this one
   //function Blog()
   //{
   //   parent::Controller();    
   //}

   function index()
   {
      echo “Hello world!”;      
   }
}
[/quote]

Yup thats true..

Code:
function Test()
    {
        // you missed this one..
        parent::Controller();// must be inside main controller function!


        // Below here you load libraries, helpers, configuration files and so on.
                $this->load->helper('myhelper'); // example
            
    }


Messages In This Thread
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 11:12 AM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 11:55 AM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 12:08 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 12:45 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 01:23 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 03:33 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 04:00 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 04:01 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 06:31 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 08:14 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 08:27 PM



Theme © iAndrew 2016 - Forum software by © MyBB