Pls can any tell me how to do this bbcode
[ php ] code here [ /php ]
[ php ] code here [ /php ]
$string = preg_replace('#\[php\](.*?)\[\/php\]#se', "'<div>' . highlight_string(stripslashes('$1'), true) . '</div>'", $string);
$string = preg_replace('#\[php\](.*?)\[\/php\]#se', "'<div>' . highlight_string(stripslashes('\\1'), true) . '</div>'", $string);
$string = preg_replace('#\[php\](.*?)\[\/php\]#se', '<div>' . highlight_string(stripslashes('$1'), true) . '</div>', $string);
//some text here to get rid of opera bug and this forum :/
Comment