$repl = array( "[br]" => "<br>", "[hr]" => "<hr>" ); // etc.... function codigo($texto){ global $repl; while(list($key,$val)=each($repl)){ $texto = str_replace($key,$val,$texto); }//wend }//end function #... etc rest of function