

ID: 476
Viewed: 5000
Added: Sep 10, 2002
Version: php v4.1+



Snippet uploaded by: snippet
Written By: Unknown
Demo: Sorry, no demo



Thank you for your vote. Please wait...
It appears you already voted for this snippet
It appears your vote value was empty


This little script will let you show the source code, of any PHP script, in color and it will also have line numbers on the left. This is good for those people that don't have the opportunity to use .phps extension do to the fact that their server is not running php as a module.
<!---Head--->
none
<!---Body--->
<h1>Show source</h1>
<ol><li>
<?
ob_start();
show_source( "file.php" );
$t = ob_get_contents();
ob_end_clean();
echo ereg_replace( "
" , "</li><li>" , $t );
?>
</li></ol>
No Comments to show


Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.
Adding your comment. Please wait...
Thanks for adding your comment!. After further review it will be added.
There was a problem adding your comment. Please try again.
Please complete all the fields in the form before sending.