hi

so i have an init.php in which i declare
$errors = array();
i include this init.php on every page, so whenever i have to output an error i just write $error[] = 'blabla whatever';
now i have an error_output function which looks like this:
function output_errors($errors) {
return '<ul><li>' . implode('</li><br><li>', $errors) . '</li></ul><br>';
}
( if there are more errors they will be sorted in a list )
however i can't manage to get the output in the color red
"<div class=\"red \">$variable</div>";
and
<font ...... </font>
did NOT work ( i know you shouldn´t use inline font however it ALSO didnt work
hopefully you guys will throw some ideas in since i don't want to set the color on each individual page

Thx in advance
