/// парочка функций
function parse_tr($text, $uid) {
return bbencode_first_pass_pda(' '.$text, $uid, '[tr]', '[/tr]', '', false, 'parse_td');
};
function parse_td($text, $uid) {
return bbencode_first_pass_pda(' '.$text, $uid, '[td]', '[/td]', '', false, 'bbencode_first_pass');
};
.........................
/// это вставить в bbencode_first_pass
// [TABLE] and [/TABLE] for inserting table structures
$text = bbencode_first_pass_pda($text, $uid, '[table]', '[/table]', '', false, 'parse_tr');
/// ну и конечно же вставить следующий код в bbencode_second_pass
// Table managment
$text = str_replace("[table:$uid]", $bbcode_tpl['table_open'], $text);
$text = str_replace("[/table:$uid]", $bbcode_tpl['table_close'], $text);
$text = str_replace("[tr:$uid]", $bbcode_tpl['tr_open'], $text);
$text = str_replace("[/tr:$uid]", $bbcode_tpl['tr_close'], $text);
$text = str_replace("[td:$uid]", $bbcode_tpl['td_open'], $text);
$text = str_replace("[/td:$uid]", $bbcode_tpl['td_close'], $text);