![]() |
Hi There, some odd DB issues.. - 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: Hi There, some odd DB issues.. (/showthread.php?tid=21912) Pages:
1
2
|
Hi There, some odd DB issues.. - El Forum - 08-25-2009 [eluser]Noy Gabay[/eluser] by the way, verynewtothis and waldmeister - thanks a bunch! :-) --------------------------------------------------- and some more new data - if I init using $_POST (instead of the $this->input->post('Field_Name') method), it works just fine. reminder - Code: echo $this->input->post('Field_Name'); (~~oh god..~~) Hi There, some odd DB issues.. - El Forum - 09-24-2009 [eluser]jimdoescode[/eluser] I seem to be having the same issue. Very frustrating. I did discover that if you call Code: $this->input->post(...) for any value prior to your update it will fail with the above behavior. So even if you do something like this... Code: $foo = $this->input->post('foo'); Code: $foo = $_POST['foo']; Anyway as Noy pointed out the work around is to use all $_POST values when updating you can still call Code: $this->input->xss_clean(...) |