This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
6.1 PHP Dates and Time - Exercises
<?php // create function to open file and read first line of file $myfile = fopen("include/Module6Quiz.txt", "r") or die("Unable to open file!"); // display the first line of file echo fgets($myfile); // close file fclose($myfile); ?>