45 lines
733 B
PHP
45 lines
733 B
PHP
<?php
|
|
|
|
require_once('_head.php');
|
|
|
|
mkheader('files!', '#aaa');
|
|
|
|
?>
|
|
<body>
|
|
|
|
<!-- ======================================================= -->
|
|
<pre><?php
|
|
|
|
// do nothing!
|
|
$handle = fopen('data.txt', 'r');
|
|
fclose($handle);
|
|
print "didn't actually do anything here ...";
|
|
|
|
?></pre>
|
|
|
|
|
|
<!-- ======================================================= -->
|
|
<pre><?php
|
|
|
|
// get everything!
|
|
echo file_get_contents('data.txt');
|
|
|
|
?></pre>
|
|
|
|
|
|
<!-- ======================================================= -->
|
|
<pre><?php
|
|
|
|
$lines = file('data.txt');
|
|
|
|
foreach($lines as $key => $line) {
|
|
$linenum = $key + 1;
|
|
print "Line $linenum: $line";
|
|
}
|
|
|
|
|
|
?></pre>
|
|
|
|
</body>
|
|
</html>
|