*alexandre* has asked for the wisdom of the Perl Monks concerning the following question:
thx =)#!"C:\xampp\perl\bin\perl.exe" use warnings; use CGI; use CGI::Cookie; my $query = CGI->new ; my $cookie = CGI::Cookie->new(-name => 'USERNAME', -value => 'Test Cookie', -expires => '+3M', -domain => 'avant-garde.no-ip.biz', -path => '/', -secure => 1); loadPersonalData(); sub loadPersonalData { my $cookie_in = $query->cookie('USERNAME'); print "Content-Type: text/html\n\n"; print "test : $cookie_in"; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: cookie not create under windows 10
by hippo (Archbishop) on Jun 24, 2019 at 12:37 UTC | |
by *alexandre* (Scribe) on Jun 24, 2019 at 13:33 UTC | |
Re: cookie not create under windows 10
by Corion (Patriarch) on Jun 24, 2019 at 12:34 UTC |