Welcome Guest, Not a member yet? Register   Sign In
CodeIgniter_2.1.0 for a complete novice!
#4

[eluser]CodeIgniteMe[/eluser]
The constructors are now in PHP5-style.

Note the double underscore(__).

Code:
public class My_Controller extends Controller{
public function My_Controller ()
{
parent::controller();
}
}
is now
Code:
public class My_Controller extends CI_Controller{
public function __construct()
{
parent::__construct();
}
}

Same with the Models.


Messages In This Thread
CodeIgniter_2.1.0 for a complete novice! - by El Forum - 02-12-2012, 03:46 PM
CodeIgniter_2.1.0 for a complete novice! - by El Forum - 02-13-2012, 07:53 AM
CodeIgniter_2.1.0 for a complete novice! - by El Forum - 02-14-2012, 09:31 AM
CodeIgniter_2.1.0 for a complete novice! - by El Forum - 02-14-2012, 08:21 PM
CodeIgniter_2.1.0 for a complete novice! - by El Forum - 02-14-2012, 10:00 PM
CodeIgniter_2.1.0 for a complete novice! - by El Forum - 02-15-2012, 06:30 AM



Theme © iAndrew 2016 - Forum software by © MyBB