Welcome Guest, Not a member yet? Register   Sign In
Search Criteria Ignored, Only Redirects to Else Statement
#8

(This post was last modified: 06-13-2019, 09:59 AM by jreklund.)

In that case change ALL your $this->input->post('submit') into $this->input->method() === 'post' instead.
You aren't sending any data inside your submit button, so it will always be null.

Not sending data:
<input type="submit" value="Submit!" />

Sending data:
<input type="submit" name="submit" value="Submit!" />

Or you can do $this->input->post() instead. Depending how you would like to validate that all your fields have been submitted.
Reply


Messages In This Thread
RE: Search Criteria Ignored, Only Redirects to Else Statement - by jreklund - 06-13-2019, 09:56 AM



Theme © iAndrew 2016 - Forum software by © MyBB