![]() |
public function __construct() - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Model-View-Controller (https://forum.codeigniter.com/forumdisplay.php?fid=10) +--- Thread: public function __construct() (/showthread.php?tid=89148) |
public function __construct() - Knutsford - 01-16-2024 PHP Code: public function __construct() RE: public function __construct() - InsiteFX - 01-16-2024 PHP Code: All of these will load your helpers. RE: public function __construct() - adimancifi - 01-16-2024 I hope this work for you. CodeIgniter v3.x PHP Code: class Home extends CI_Controller CodeIgniter v4.4.4 PHP Code: namespace App\Controllers; RE: public function __construct() - kenjis - 01-16-2024 See https://codeigniter4.github.io/CodeIgniter4/installation/upgrade_4xx.html RE: public function __construct() - Knutsford - 01-17-2024 Thanks the last one was what I was looking for |