Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
elsif (-e "./file.txt")
{
# open/read InPut File
open(IPF,"<file.txt") or
die "Failed to open file.txt, $!";
while (<IPF>) { $text .= $_; }
close IPF;
}
print qq(<p>Show me the text</p>
<textarea name='input1' cols='45' rows='5'>$text
</textarea>
<input type='submit' value='Submit'>);