![]() |
Active Record gotcha - 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: Active Record gotcha (/showthread.php?tid=3794) |
Active Record gotcha - El Forum - 10-22-2007 [eluser]Michael Ekoka[/eluser] in the following code I want to update the password field in one record : Code: $form_data = $this->input->post('form_data'); What I will end up doing here is update the password field of all records in the table. So, fellow CodeIgniters beware when making update and delete operations like these. |