So I have a web app that i’m working on with a form that requires all of the fields to be populated before submitting. If you try to submit the app without a field being populated, it loads the page again with the errors. Once you fill all the fields in and click submit, it does a redirect to the same page and shows a message which is generated from flashdata. See simplified example below.
Welcome controller:
function show_view()
{
$this->load->view('form');
}
function process_form()
{
// make the 'quality' field required
$this->form_validation->set_rules('quality', 'Quality', 'required');
if($this->form_validation->run() == FALSE) //if the fields are NOT filled in...
{
echo form_error('quality');
$this->load->view('form'); //reload the page
}
else // if the fields are filled in...
{
// set success message in flashdata so it can be called when page is refreshed.
$this->session->set_flashdata('message', 'Your rating has been saved');
redirect(welcome/show_view);
}
}
Now to illustrate my issue, lets say I’m on the ‘home’ view and I navigate to the ‘form’ view. If i populate the ‘quality’ field and click submit, i get redirected back to the ‘form’ view, with a success message. If i click the back button on the browser, it takes me back to the ‘home’ view. EVERYTHING WORKS AS EXPECTED
Now lets say i’m on the ‘home’ view and I navigate to the ‘form’ view. If i click the submit button without populating the ‘quality’ field, the ‘form’ view is reloaded again and it displays the error message. If i then populate the ‘quality’ field and click submit, i get redirected back to the ‘form’ view with a success message. The problem is, if i click the back button on the browser, it now takes me back to the form page with the error, and I have to click the back button again to get back to the ‘home’ view.
What is the best coding practice so that if a user submits the form with errors, it will display the errors, and if they fix the errors and submit the form again it will display the success message and if they click back on the browser, it will take them back to the ‘home’ view??
The problem is that you’re using two separate functions to do form handling. The form validation class docs don’t really explain it well, and it took me awhile to realize it but the form_validation->run() returns false if there is an error, but also if it is a GET request, and subsequently accounts for the GET request in the related functions like the form_error(), and validation_errors(), set_value(), etc.
The best practice in CI (and in general) is to do this:
then in the view have the form
action="welcome/form"Basically all of the form error functions and all the stuff related to form validation have checks to see if the form validator actually ran… here is an example from the form_error function in the form helper file
When their isn’t a POST, it shows as normal, and has the natural page flow you are looking for.
Unrelated to the question, but confusing/noteworthy about the form validation class… if you use the filters like xss_clean, prep_url, etc. in the parameters field, it actually repopulates the $_POST array for you, so you don’t really need to do anything extra.
Sometimes it’s worth taking a look at the internals of the CI source, there’s some clever stuff in there which isn’t entirely obvious.