How do you customize/style codeigniter errors?

后端 未结 5 855
野性不改
野性不改 2021-01-04 19:17

I\'m trying to customize the CSS/HTML for error message displays in codeigniter so I can apply a tag too each and style them up.

I tried to Google this and search t

5条回答
  •  抹茶落季
    2021-01-04 19:58

    $this->validation->set_error_delimiters('
    ', '
    ');

    This is wrong syntax. the Correct is

    $this->form_validation->set_error_delimiters('
    ', '
    ');

提交回复
热议问题