Welcome Guest, Not a member yet? Register   Sign In
callback problem
#8

[eluser]Cristian Gilè[/eluser]
Remove some code from the if statement in the pre_loran function as follow:

Code:
$this->form_validation->set_rules('info','Info','trim|required|valid_email|callback_check_infos|xss_clean');

if ($this->form_validation->run() == FALSE)
{
  $this->load->view('your_view_name'); //reload the view to show errors
}
else
{
  redirect('controller/method'); //redirect to the success page
}

and check if it works.


Cristian Gilè


Messages In This Thread
callback problem - by El Forum - 01-18-2011, 09:52 AM
callback problem - by El Forum - 01-18-2011, 09:58 AM
callback problem - by El Forum - 01-18-2011, 10:24 AM
callback problem - by El Forum - 01-18-2011, 10:34 AM
callback problem - by El Forum - 01-18-2011, 10:44 AM
callback problem - by El Forum - 01-18-2011, 12:55 PM
callback problem - by El Forum - 01-18-2011, 12:59 PM
callback problem - by El Forum - 01-18-2011, 01:31 PM



Theme © iAndrew 2016 - Forum software by © MyBB