![]() |
Input fields are coming up empty - 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 fields are coming up empty (/showthread.php?tid=51025) Pages:
1
2
|
Input fields are coming up empty - El Forum - 04-18-2012 [eluser]jrock2004[/eluser] I have been looking at this code too long and I am sure I am missing something. When I hit submit and I grab the input fields, they are empty. View Code: <div id="login_form"> Controller Code: public function index() { Thanks for any help Input fields are coming up empty - El Forum - 04-18-2012 [eluser]InsiteFX[/eluser] Your missing your form_close() Also see the Form_Validation Class Library... CodeIgniter Users Guide - Form Validation Input fields are coming up empty - El Forum - 04-18-2012 [eluser]jrock2004[/eluser] Added the following and still not working Code: <div id="login_form"> Input fields are coming up empty - El Forum - 04-18-2012 [eluser]Mauricio de Abreu Antunes[/eluser] Please, print your array post with: Code: print_r($_POST); Input fields are coming up empty - El Forum - 04-18-2012 [eluser]jrock2004[/eluser] The array comes up empty Array ( ) Input fields are coming up empty - El Forum - 04-18-2012 [eluser]Mauricio de Abreu Antunes[/eluser] Paste the code here, please. Input fields are coming up empty - El Forum - 04-18-2012 [eluser]InsiteFX[/eluser] You are re-loading the session and form_helper in your validate_credentials() method, no need to do this just autoload them in ./application/config/autoload.php Input fields are coming up empty - El Forum - 04-18-2012 [eluser]jrock2004[/eluser] I have pasted the code in my first post. What else are you looking for? Also, I should add that this code is running on my localhost via a wamp server. I am starting to see via google searches with people who are having similar issues Input fields are coming up empty - El Forum - 04-18-2012 [eluser]Mauricio de Abreu Antunes[/eluser] Paste your print_r. Input fields are coming up empty - El Forum - 04-18-2012 [eluser]jrock2004[/eluser] Here it is from chrome inspector Code: Array |