Does anyone know of a script that takes a PHP file and outputs an HTML file that is color coded to make it easier to read? I have a few programs that do this, but I was looking for something that can do it on the fly from my website.
Do you mean you want an HTML page of color-coded PHP to show up? If so, just use the show_source() function.
<? show_source('file.php'); ?>
God, I hate it when the answer is that easy. Makes me feel like a complete dork. Thanks a lot, I must have missed that in the manual.