John W. Holmes wrote:
Gohaku wrote:

Hi everyone,
I'm trying to output PHP source within a PHP Script. The following script seems to work(Viewing HTML Source reveals the PHP Source), but the Browser output is very different. Is there a function or header I should set before echoing the PHP Source? Thanks.



<? //filereader.php //script arguments: filereader.php?file= $fh = fopen($file,"rb"); $src = fread($fh,filesize($file)); fclose($fh); echo '<html><meta http-equiv="Content-Type" content="text/plain">'; echo $src; echo '</html>'; ?>


echo htmlentities($src);



there is a function just for this


highlight_file($file);

is all you need

Mike

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to