I have this code
if($hgroup['groupid'] == $row_groups['groupid']){
$problem++;
$hostname=DBfetch($cursor_gethost_again);
$replace_macro=array('/{HOSTNAME}/','/{HOST.NAME}/');
$problem_text=$problem_text.$trigger['description'];
$problem_text=preg_replace($replace_macro,$hostname['name'],$problem_text);
$problem_text=$problem_text."\r\n";
}
It is a code generating in cycle. Can anybody help me how to make that stupid newline? I have to do it this way cuz im modifying one code. So i want to keep that layout.
dont work. It will print it with text. I also try preg_replace to <br />.

