CodeIgniter Forums
form field not updating - 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: form field not updating (/showthread.php?tid=57639)

Pages: 1 2


form field not updating - El Forum - 04-01-2013

[eluser]deongee[/eluser]
I figured it out. Since the account_id was part of the url i had to reference this in the model where clause.

Code:
$where = array(
      'account_id' => $this->uri->segment(3, 0),
      'platform' => $this->input->post('platform')
    );