//transcript.php contain some php script. Ex:
<?php
echo "How tp use show_source()";
?>
Usage:
<?php
$source = show_source("transcript.php", true);
print $source;
?>
Output:
This is print the source of the
------------------------------------
<?php
echo "How tp use show_source()";
?>