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
use warnings;
use strict;
use CGI qw/:standard/;
$CGI::POST_MAX = 1024 * 10; # max 10K posts
$CGI::DISABLE_UPLOADS = 1; # no uploads
my $name = param('name') or error('Enter a name');
my $comments = param('comments') or error('Enter some comments');
($name,$comments) = escapeHTML($name,$comments);
open(FH,'>>e:/0/74/38/237038/user/240783/htdocs/mywebs/tmportal/test/comments.txt') or die "$!";
print FH "<hr>Name: $name<br>Comments:<br>$comments<hr>\n";
close <FH>;
print "Location: [URL unfurl="true"]http://www.mywebsfree.com/tmportal/test/index.shtml\n\n";[/URL]
sub error{
my $error = shift;
print header,start_html,h1($error),end_html;
exit;
}