I have this code to put php parts code in special style , and leave the ather part ..
what I need is : How can I change something like font,align,bgcolor .... etc for php parts and leave athers parts or give it diffrent style ?
note : $txt is mysql field ..
<?
$txt = preg_replace('#[ php](.+?)[ /php]#eis', 'highlight_php()', $txt,'[1]');
$align = preg_replace('<align=left>' , 'highlight_php()' , '$txt' );
function highlight_php($txt)
{
$addedtags = 1;
ob_start();
highlight_string($txt);
$txt = ob_get_contents();
if ($addedtags == 1)
{
$openingtag = strpos("$txt", '<? ');
$txt = substr("$txt", 0, $openingtag) . substr("$txt", $openingtag + 6);
ob_end_clean();
}
return $txt;
}
?>