Forum Moderators: phranque
<code><span style="color: #000000">
function functionName() {
<br /> global $vars;
and so on. Isn't it possible to make it add more rich formatting? I'm looking for something like the way code is presented in the php.net doc. I've seen it on .phps files many places, but don't remember any urls :(
; Colors for Syntax Highlighting mode. Anything that's acceptable in
; <span style="color:?"> would work.
;highlight.string = #DD0000
;highlight.comment = #FF9900
;highlight.keyword = #007700
;highlight.bg = #FFFFFF
;highlight.default = #0000BB
;highlight.html = #000000
highlight.default = #CC00FF... then you will notice that <?php ?> tags as well as function names would come out in pink rather than blue. More reading can be found in the PHP documentation.
[php.net...]