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.
print "Content-Type: text/html\n\n";
while (($file, $present) = each(%filenonexistshash)) {
print "File $file $present\n";
print OUTPUT <<END_of_Next;
<HTML>
<HEAD>
<TITLE>Input File Status</TITLE>
</HEAD>
<BODY>
<TABLE BORDER="1" BORDERCOLOR="red">
<TR>
<TD>$file</TD>
<TD>$present</TD>
</TR>
</TABLE>
</BODY>
END_of_Next
}
print "Content-Type: text/html\n\n";
print "<html><head><title>whatevertitle</title></head>\n";
print "<body><table border=1 cellspacing=0 cellpadding=0>";
foreach (@lines) {
print "<tr><td>$_</td><td>$_\n";
}
print "</table></body></html>\n"