/* VALIDATE START TIME - END TIME in hh:ss format */
/* /^([01]?[0-9]|2[0-3]):[0-5][0-9]$/ */
$crud->set_rules('startTime', 'Begin Time', 'callback_test_check(' . $this->input->post('startTime') . ')');
and this is callback function:
function test_check($str) {
if (!preg_match('/^([01]?[0-9]|2[0-3]):[0-5][0-9]$/', $str)) {
$this->form_validation->set_message('test_check', 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA.');
return false;
}
return true;
}
And it's always throw this message although i tried many times.
Unable to access an error message corresponding to your field name Begin Time.(test_check(22:22))
