Welcome Guest, Not a member yet? Register   Sign In
Pagination throws form validation error when clicking links
#4

[eluser]Aken[/eluser]
$this->form_validation->run() will return false on a normal page load, not just when POST values have been submitted. Your controller is done in a really weird order. It should be more like this:

Code:
if ($this->form_validation->run() === false)
{
    // A normal page load, or a form with errors goes here.
}
else
{
    // Valid form submitted, process it.
}

See the user guide example for more details.


Messages In This Thread
Pagination throws form validation error when clicking links - by El Forum - 08-03-2012, 11:01 PM



Theme © iAndrew 2016 - Forum software by © MyBB