![]() |
input->post doesn't work - 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: input->post doesn't work (/showthread.php?tid=2701) |
input->post doesn't work - El Forum - 08-20-2007 [eluser]snaggy[/eluser] input->post always returns false.. what am I doing wrong? The code that follows is being executed on a freshly installed CI, last version Code: <?php Code: <html> what's wrong in my code? bye! input->post doesn't work - El Forum - 08-20-2007 [eluser]Derek Jones[/eluser] You're missing a name= attribute in your input tag. It's a required attribute (for button, checkbox, file, hidden, image, password, text, and radio) to provide a unique identifier for the form field. id is for the DOM, name is for the form data. input->post doesn't work - El Forum - 08-20-2007 [eluser]snaggy[/eluser] Well I can't believe I waste a hour on this stupid problem!! Thank you! |