![]() |
Post Forms without validation - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: Post Forms without validation (/showthread.php?tid=20485) |
Post Forms without validation - El Forum - 07-11-2009 [eluser]PHP Creative[/eluser] Hi there How do you post a form without validation? For example I have a form on the first page and when submitted it goes to another form on the second page but somehow the validation checks on the second form are activated when the first is posted. Any ideas? Thanks a million. Post Forms without validation - El Forum - 07-11-2009 [eluser]stuffradio[/eluser] We need more information, like code you are using in your controller for submitting it and where it's submitting to. Post Forms without validation - El Forum - 07-11-2009 [eluser]PHP Creative[/eluser] Code: <? Post Forms without validation - El Forum - 07-21-2009 [eluser]Unknown[/eluser] I had a similar issue to summer students. I’m making a registration form. When the user has typed his information and signed up I want a new page to show the info he typed for confirmation. I hope to see problem fixed soon. THX Post Forms without validation - El Forum - 07-21-2009 [eluser]Thorpe Obazee[/eluser] [quote author="PHP Creative" date="1247364078"]Hi there How do you post a form without validation? For example I have a form on the first page and when submitted it goes to another form on the second page but somehow the validation checks on the second form are activated when the first is posted. Any ideas? Thanks a million.[/quote] If you don't want the validation, then don't use it. When you pass data to the second page, you can always use $_POST or $this->input->post(). |