people,
anyone have a idea to replace the [/B] char into a string, like this >> $text = "blabla \' blabla"; $text1 = "blabla ' blabla";
www.php.net/str_replace
You'll need to escape the \
$old_string = " this is my \' string "; $new_string = str_replace ("\", "", $old_string);
thaxs
in this case, it looks like [man]stripslashes/man or [man]addslashes/man might be more accurate.