FilterHTML($string)
linebr($string)
How would I combine these 2?
If you're talking about running the first one on $string and then running the second one on the output of the first one, this is what you would do...
$output = linebr( FilterHTML( $string ) );