To use with BBCode, you must use the BBCode parser class. It's a very simplistic class to use, and you can read more about it
here (class -> vB_BbCodeParser).
If you want to parse a variable called $var, you would use this php code:
PHP Code:
require('includes/class_bbcode.php');
$var = '[b][i][u]HA HA[/u][/i][/b]';
$bbcode = new vB_BbCodeParser($vbulletin,fetch_tag_list());
$template_var = $bbcode->do_parse($var);
This will have a fully parse variable from $var into $template_var. You could change any of my variable names if needed.