![]() |
Problem with hidden field - 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: Problem with hidden field (/showthread.php?tid=4059) |
Problem with hidden field - El Forum - 11-05-2007 [eluser]leonglass[/eluser] I have a problem with a hidden field not showing up in the $_POST variable. Code: <input type="hidden" name="name" value="value" /> Problem with hidden field - El Forum - 11-05-2007 [eluser]Phil Sturgeon[/eluser] Try making this one a normal input. If that still doesnt work try setting the id field. I've had weird errors with things like this before, i just faff until they go away. Problem with hidden field - El Forum - 11-05-2007 [eluser]leonglass[/eluser] I found that moving the hidden field above my button fields did the trick. Thanks. |