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(:all);
use CGI::Cookie;
my $cookie = $q->cookie (
-name => 'COOKIENAME',
-value => '',
-path => '/',
-expires => '-1d'
);
print $q->header(-cookie => $cookie);
print qq~<html>
....
</html>~;
use CGI;
[b]my $q = CGI->new;[/b]
my $cookie = $q->cookie (
-name => 'COOKIENAME',
-value => '',
-path => '/',
-expires => '-1d'
);
print $q->header(-cookie => $cookie);
print qq~<html>
....
</html>~;