I want to have one validation for two input
ex I have input agendaCode and agendaNumber
I want codeigniter check the concation value of both input at the same time so I will have code like
$this->form_validation->set_rules('agendaCode/agendaNumber','my_callback_function);
but its return error
i know the answer by using
$this->form_validation->set_rules('agendaCode','my_callback_function[agendaNumber]');