Hey guys

I am getting some messages from my forum database manually and printing them on a non-forum page.( which BBCODE is not set. )

At first I was doing some php codes for the changes like :

CODE
$content = str_replace("[b]","<b>",$content);
$content = str_replace("[/b]","</b>",$content);


But as people began to use more and more BB Codes, It is running out of my hands...

Wanted to know is there any plugin or something that I could filter my $content with that and echo it right in non-forum pages?

Thanks