Files
RobinNixon 53063593e3 Final
Final
2020-12-10 13:51:13 +00:00

9 lines
179 B
PHP

<?php
$fh = fopen("testfile.txt", 'r') or
die("File does not exist or you lack permission to open it");
$line = fgets($fh);
fclose($fh);
echo $line;
?>