[eluser]InsiteFX[/eluser]
Let me explain this a little better for you, when you click on the submit button it passes back TRUE to the form_validation so it then carries out the else formseccess. If it is FALSE the it will load MyForm.
Code:
if($this->form_validation->run() == FALSE)
{
$this->load->view('MyForm');
}
else
{
$this->load->view('formsuccess');
}
No need to check for the submit button, use the code I showed you.
I also need to see your form code for your views.
InsiteFX