starting the chapter on files

cat-town
Dan Buch 14 years ago
parent da075b76ba
commit 15b891ff97

@ -0,0 +1,7 @@
dogs
cats
babies
monkeys
hats
dollars
ham

@ -0,0 +1,29 @@
<?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>
Loading…
Cancel
Save