box-o-sand/docroot/html/files.php

30 lines
437 B
PHP
Raw Normal View History

2010-12-30 18:57:54 +00:00
<?php
require_once('_head.php');
mkheader('files!', '#aaa');
?>
<body>
<!-- ======================================================= -->
<pre><?php
// do nothing!
$handle = fopen('data.txt', 'r');
fclose($handle);
?></pre>
<!-- ======================================================= -->
<pre><?php
// get everything!
echo file_get_contents('data.txt');
?></pre>
</body>
</html>