function whatever() { // whatever if ($this->validation->run()) { // process the validated input (e.g. database stuff) // redirect } // load view }
function index() { $this->load->library('validation'); if ($this->validation->run() == FALSE) { $this->load->view('myform'); } else { $this->load->view('formsuccess'); } }