Free web development scripts for the webmasterDevelopment Scripts

 Site Navigation
 o Development Scripts
 o Text Only Edition
 o PHP.net News
 o Tutorials
 o Register an account
 o New entries this week
 o Affiliates/Links
 o Contact Us
 o About us
 o Advanced Search

 Browse Path
 o 3 users online
 o Most users online: 67
 o Home
  o PHP
   o Miscellaneous
    o Script

 Member Login
User Name
Password

 Standards
Valid XHTML 1.0!
Valid 
CSS!

 Recommended Links
 o PHP Freaks
 o Designer Baby Clothes
 o Advertise Here Make Money
 o Wedding Vendor Directory
 o designplace
 o Open Source Design
 o Free Wedding Websites
 o devnet
 o OxyScripts

Highlight PHP Code (Rated 4.71)

Description:

It will highlight your PHP code, and remove any superfluous extra spaces that highlight_string adds in.

Code starts here


<?PHP

function showsource ($code)
{
ob_start();
highlight_string($code);
$colorsource = ob_get_contents();
ob_end_clean();

$colorsource = str_replace (" ", " ", $colorsource);

return
$colorsource;
}

?>

Last Edited: 12-02-2003


Submitted by Devscripts on 12-02-2003 22:29


Rate This Script

User Contributed Comments

Registered Members login
© Copyright 2003 - Devscripts.net