So sollte es klappen
PHP:
<?
include('geshi.php');
function bbcode($string) {
$string = preg_replace("#\[bb\](.*?)\[/bb\]#sie", "'<table align=center width=90%><tr><td><font face=Verdana size=2><b>BlitzBasic Code:</b></font></td></tr><tr><td><table cellpadding=4 cellspacing=1 width=100% bgcolor=#000000><tr><td bgcolor=#c0c0c0>'.highlight_code('\\1').'</td></tr></table></td></tr></table>'", $string);
return $string;
}
function highlight_code($source)
{
$geshi =& new GeSHi($source, 'blitzbasic');
$return = $geshi->parse_code();
return $return;
}
echo bbcode("[bb];test[/bb][bb];test[/bb]");
?>
wieso bekommste das nich in die Tabelle? das iss doch simpel^^ rofl^^
Zuletzt bearbeitet: