Oh, ok, I see now. If I have it in other areas of the site and I don't want it in this area, then I have to parse the code first and then strip it out. It worked great! Thank you very much, Chen. Here's the code I used:
Code:
$username = $buddy['username'];
$buddy[usertitle]=bbcodeparse($buddy[usertitle]);
$buddy[usertitle]=strip_tags($buddy[usertitle]);
Quote:
Originally posted by FireFly
Without diving into the editor and writing some regex's I think the best way would be to strip_tags() from the bbcodeparse()'ed code.
|