LPMJ Example 7-5 (Click on the icon to view the source for copy and pasting)
<?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;
?>