I am writting the user interface and i want rich text such bold italic or underline
I have made a javascript (prompts) like the one of the forum as /[B/]bold/[/B/]
So i tried to use the following code
$_POST['text']=ereg_replace("/[B/]","<b>",$_POST['text']);
$_POST['text']=ereg_replace("/[/B/]","</b>",$_POST['text']);
$_POST['text']=ereg_replace("/[I/]","<i>",$_POST['text']);
$_POST['text']=ereg_replace("/[/I]/","</i>",$_POST['text']);
$_POST['text']=ereg_replace("/[U/]","<u>",$_POST['text']);
$_POST['text']=ereg_replace("/[/U]/","</u>",$_POST['text']);
But the result is ok []ok[<<i>b>] []ok[<<i>b>] []ok[<<i>b>]
What have i made wrong?