How to validate many fields combined in Codeigniter?

后端 未结 3 999
终归单人心
终归单人心 2021-01-25 13:47

Is there a creative and easy way to check many form fields at once.

I have a form with generated fields on the fly, each has a unique id.

The thing is submittin

3条回答
  •  半阙折子戏
    2021-01-25 14:43

    Try this:

    $_POST['data_you_want_to_validate_together'] = $_POST['first_field'] . $_POST['second_field'];
    $this->form_validation->set_rules('data_you_want_to_validate_together','Some Data', 'required|callback_some_function');
    

    Now you can get the data via:

    echo $this->input->post('data_you_want_to_validate_together');
    

提交回复
热议问题