i got this - a string i want to display only i want to eliminate the bbcode in the string, how should i do this?
$str = '[\CODE\][\B\][\SIZE=2\]For those of you who had watch Proposal Daisakusen drama, you will be really excited to see this![/size][/b]'; $result = preg_replace('/\[.*?\]/', "", $str); echo $result; PHP: