[vox-tech] reading files into a web page

nbs vox-tech@lists.lugod.org
Sat, 2 Feb 2002 12:10:37 -0800


On Sat, Feb 02, 2002 at 03:14:02AM -0800, Mark K. Kim wrote:
> Better way would be with PHP:
> 
>    ...
>    <pre>
>       <?php
>          $fp = fopen("/www/pcgm/bulletins", "r");
>          fpassthru($fp);
>       ?>
>    </pre>
>    ...

Or simpler yet:

  <?php include("file"); ?>


-bill!