I have been working with CodeIgniter for a while now and have never encountered this problem.
Basically, a function from a controller is continuing to load even though it no longer exists.
I do not have any caching mechanisms besides Chromes, and I have already hard reset to no avail. If you notice in the screenshot, it is throwing an error associated with the form validation library. I have already ruled out that it is CodeIgniter and it is definitely something I'm doing wrong but I am unable to see it.
I have claimed before that I did not think the problem was with CodeIgniter, but that was because I assumed the last version of my app was correctly working, but it is no longer working. Ill keep updating.
Okay so although I was only trying to send a single POST submission, there are hidden from elements as well as other visible elements on the forms that were definitely causing this issue. To give you a bit more information, this form is essentially a user interface for CURL. It is taking a website or any url as well as headers and attempting to download the version of the website into my database. I may have solved the issue but I can't say just yet until I pinpoint the problem I will mark the issue as solved.
So, I somehow fixed it.
This was my offending code : echo form_input($value, set_value($value, $value));
This is what I changed it to and it somehow worked : echo form_input($name, $value);
If you must know this is the start of the loop : foreach (apache_request_headers() as $name => $value) {}