here's a working sample of it that works in the forum installation directory:
PHP Code:
<?php
require_once('global.php');
require_once('includes/class_bbcode.php');
$bbcode =& new vB_BbCodeParser($vbulletin, fetch_tag_list()); // call the bbcode class
$text = 'Some text [b]with bbcode[/b] in it'; // data that contains bbcode
$forumid = 'nonforum'; // (follows "global" bbcode rules as defined in vBoptions)
$allowsmilie = true; // parse smilies? true = yes, false = no.
$parsed_text = $bbcode->parse($text, $forumid, $allowsmilie); // Parse the text
echo("<html>");
echo($parsed_text);
echo("</html>");
?>
save it as "testparser.php" and simply run it in your forum installation directory as
www.yourforum.com/forum/testparser.php
it should print this: "Some text
with bbcode in it"