![]() |
No Data after Form POST - 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: No Data after Form POST (/showthread.php?tid=60939) |
No Data after Form POST - El Forum - 08-05-2014 [eluser]Unknown[/eluser] Hey fellow programmers, the topic of my thread already describes my problem. To be a little more specific: I added the "Layout.php" library to get this type of building the view going for me. Then I also added an .htaccess file wich contains: Code: RewriteEngine On to get rid of the index.php thingy in the URL. Now it try to send a username and a password with POST from an html form. Code: <form id="login" action="" method="post"> Neither $_POST['username'] etc. nor is $this->input->post(); (I use Version 2.2 so leaving the brackets from post empty shouldn't be a problem, right?) is filled with any data. Btw. it worked like 4 hours ago, then I just added some breadcrumb navigation and now my POST doesn't work. I guess this was already asked 100 times, but none of the solutions I found worked in my case. Greetings Peytra EDIT_1: I found something really strange. The POST works with every username except the one i Test with. EDIT_2: Sometimes I just want to dig a deep, black, infinite hole to bury myself in. The POST data was there. I just var_dumped it at the wrong step. Have a nice day lads and lass' |