That didn't really work for me, i odn't know why, maybe I was doing something wrong, but anyhow, here is my current code now, everything works except for the MEMBER one:
$bbcode = array("[QUOTE ]", "[/QUOTE ]", "[IMG]", "[/IMG]","[ ","] ","URL=","/URL","MAIL=","/MAIL");
$htmlcode = array("<div id=quote>", "</div>", "<img src=\"", "\">","<",">","a href=","/a","a href=mailto:","/a");
$commentName = str_replace( $bbcode, $htmlcode, $commentName);
$bbcode = array("<MEMBER=", "(.+)");
$htmlcode = array("<a href=forum.php?level=members&memberUsername=", "\\1");
$commentName = str_replace( $bbcode, $htmlcode, $commentName);