[eluser]Funky Fresh[/eluser]
Hey Hey,
Im new to CI ... Im writing my first app and using the form_validation for the first time.
if the validation fails, is it best to use return; or redirect(''); to go back to the same page.
for example.
Code:
if($this->form_validation->run()){
//redirect('');
//return;
} else {
}
Which of the return methods would be best to use.
Cheers,