I am going to get post text in the "post" table from database and insert posttext into another table. The bbcode in posttext must be parsed to html.
Then I use
And it works fine, but
Then I use
PHP:
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list(), true);
$my_text = $bbcode_parser->do_parse($row['pagetext'],false,true,true,true,true,false);
And it works fine, but