As I get more and more deeply involved in using Codeigniter for my projects I discover bits and pieces that I think might be useful to others.
Today is a very quick tip about styling the error messages that are thrown on a form. Looking at the statement that you have in your view it isn’t immediately obvious how you apply any styling to this at all.
echo form_error('file');
The answer, strangely, is to apply the look and feel through a call to set_error_delimiters in your controller and not in the view. The function takes two parameters: the html code … Read the rest
