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/bin/perl
#above is the shebang line issue which perl at the command line to see
#where your perl actually resides
use strict; #force good practice
use CGI;
my $query=new CGI;
my $fred=param('fred');
print $q->header;
open FH, ">>myfile.txt" or die "can't open output file $!";
print FH "fred is now $fred\n";
close FH;
print $q->start_html();
print $q->"fred is now $fred";
print $q->end_html();