--
DocumentA.txt:
-----------
<?php echo 'something here'; ?>
-----------
Document B:
--------------
<?php
include('Document A');
?>
--------------
I would like the output of Document B to be:<?php echo 'something here'; ?>
instead of something here. --------------
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

