![]() |
Empty update form_input - 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: Empty update form_input (/showthread.php?tid=42019) |
Empty update form_input - El Forum - 05-24-2011 [eluser]Unknown[/eluser] Hello, Im new on CodeIgniter.. I have controller (crud): Code: function update() { view (updateform) Code: <?php $this->load->helper('form'); ?> and model (posts_model): Code: function updatePost($id, $title, $content) { Now are: http://lulzimg.com/i22/e9f615.png and want that be like this: http://lulzimg.com/i22/e6a49a.png now is empty update form input, but i want that I will see from database what I updating... Anyone can help? :/ Empty update form_input - El Forum - 05-24-2011 [eluser]InsiteFX[/eluser] Where's your form_open? InsiteFX Empty update form_input - El Forum - 05-24-2011 [eluser]Unknown[/eluser] crud_view: Code: <?php $this->load->helper('form'); ?> Empty update form_input - El Forum - 05-24-2011 [eluser]InsiteFX[/eluser] Code: <?php echo form_open('crud/update'); ?> InsiteFX |