CodeIgniter Forums
Newbie advice from a newbie - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Newbie advice from a newbie (/showthread.php?tid=56518)



Newbie advice from a newbie - El Forum - 12-27-2012

[eluser]dauber[/eluser]
So...I tried the CodeIgniter tutorial here; didn't work. There's a thread from a year ago discussing some workarounds, still not working very well with me.

Other tutorials online are loaded with typos and are not up to date with the current version.

BUT...the user guide is fantastic. Seriously, folks, follow THAT, not the tutorials. It's incredibly clear.


Newbie advice from a newbie - El Forum - 01-04-2013

[eluser]sofwan[/eluser]
Probably, the tutorial is not update yet with the latest version of CI, especially from 1.7.x to 2.x version, there are some different syntax, such as "Controller" in 1.7.x version, change to "CI_Controller" in Controller extends.



Newbie advice from a newbie - El Forum - 01-05-2013

[eluser]InsiteFX[/eluser]
Also Models extend CI_Model now.

PHP Constructor has changed:
Code:
public function __construct()
{
    parent::__construct();
}