If anyone out there has VBulletin, do you know where I can find the code that adds syntax highlighting like this:
<?php //comments /* and some more */ $text="Hello" echo("$text"); ?>
php offers functions for syntax highlighting:
http://www.php.net/manual/en/function.highlight-file.php http://www.php.net/manual/en/function.highlight-string.php
show_source("filename");
Great! Thanks!