PHP Colorizator
Posted: Mon Mar 27, 2006 10:46 am
Is there any way to get the source for the markup engine for the "php" tags? I'd like to generate the same markup for some of my code. Something akin to:
Basically, some php code to automatically do what I did above.
- jake
Code: Select all
// Comment
function thisFunction($params){
$variableName = new Variable($params);
for ($c = 0; $c < 10; $c++) {
echo "Some string";
}
return 10;
}- jake