How do you customize/style codeigniter errors?

后端 未结 5 853
野性不改
野性不改 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

    You can do something like this...

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

    See the related Codeigniter documentation

    Note: Updated to correct function reference (validation should be form_validation).

提交回复
热议问题