Lab # Exercise #16. Create a text file with multiple lines and read those lines into an array.
**************************************************************
CODES:
$lines = file("lab02-14.txt");
foreach($lines as $line)
{
echo($line);
}
**************************************************************
ANSWER:
This is a test
Here's another paragraph.