![]() |
Form submission - 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 submission (/showthread.php?tid=57232) |
Form submission - El Forum - 02-27-2013 [eluser]razputin[/eluser] Hi, I'm currently using two functions in my controller to process forms, one to load the form and the other to process the post data. What I'll like to know is how other people code forms in codeigniter, for example how does one load and process the form in one controller, or simply how do you check if the form was submitted in codeigniter? In vanilla PHP its simply Code: if ( isset( $_POST['Submit'] ) ) { }, Form submission - El Forum - 02-27-2013 [eluser]Aken[/eluser] http://ellislab.com/codeigniter/user-guide/libraries/form_validation.html |