![]() |
Two method calls in one Request - 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: Two method calls in one Request (/showthread.php?tid=14664) |
Two method calls in one Request - El Forum - 01-10-2009 [eluser]Unknown[/eluser] Hey guys, at first I will say thx for this very nice framework. I will now porting my applications (mostly build with Zend Framework) to this great framework. I like the performance of this. ![]() But to my problem. I have a little CRUD class build and in this class I've a delete methode which will delete a row by the primary id. The Code from this methode is the following: Code: public function delete() { and a sample myDelete methode from a model: Code: public function myDelete($id) { And the my delete methode will is calling two mal. Any ideas why? Thx PS: Sorry for my bad english. ![]() |