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.
#!/usr/local/bin/perl
use CGI;
my $o = new CGI;
print $o->header, $o->start_html;
foreach (keys %ENV)
{
print qq(KEY: $_ - VAL: $ENV{$_}<br />\n);
}
print $o->end_html;