![]() |
new function not working - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: new function not working (/showthread.php?tid=28627) |
new function not working - El Forum - 03-17-2010 [eluser]bimbolera[/eluser] this is the content of my controller class RPMS_personal extends Controller { //private $feedback; function RPMS_personal() { parent::Controller(); } function index() { $this->load->view('PERSONALLOAN/RPMS/create'); } function test() { $this->load->view('PERSONALLOAN/RPMS/create'); } } the module being loaded is ckeditor, now my problem is, when i use it inside index() it is working but when i use it in function test it's not working. i'm newbie to CI that's why i find this really difficult. thanks in advance. |