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.
use CGI qw(-nosticky);
my $cgi = new CGI;
my $item = $cgi->param('item');
my $quantity = $cgi->param('quantity');
print $cgi->startform();
...
print $cgi->hidden(-name=>'item', -value=>$item);
print $cgi->hidden(-name=>'size', -value=>$size);
...
print $cgi->submit(-name=>'action', -value=>'Update');
print $cgi->endform();
print $cgi->hidden(-name=>'item', -value=>$item, -override=>1);