Welcome Guest, Not a member yet? Register   Sign In
form_validation two is_unique
#1

Hello

I've a little issue, in my view receive one param by post named GatewayId

This is my controller

Code:
$this->load->model("DeleteExpense_model");

   $GatewayId = $this->input->post('GatewayId');

   $this->form_validation->set_rules('GatewayId', 'GatewayId', 'is_unique[tab_expense.tab_gateway_id]');
   $RESULTA=$this->form_validation->run();

   $this->form_validation->set_rules('GatewayId', 'GatewayId', 'is_unique[tab_income.tab_gateway_id]');
   $RESULTE=$this->form_validation->run();

I want to check in two tables, then problem is that return false in both cases, if I run by separate work as well, it should retunr in the first case true and false in the other but seems like the second check overwrite the first, can somebody help me?

Thank you advance!.
Reply


Messages In This Thread
form_validation two is_unique - by oscarenzo - 10-23-2017, 03:10 PM
RE: form_validation two is_unique - by oscarenzo - 10-24-2017, 12:36 AM
RE: form_validation two is_unique - by PaulD - 10-24-2017, 11:01 AM
RE: form_validation two is_unique - by oscarenzo - 10-24-2017, 02:47 PM



Theme © iAndrew 2016 - Forum software by © MyBB