Thread Cookie-Hash ist leer (CGI)
(9 answers)
Opened by GwenDragon at 2010-10-27 14:14
Dein Cookie ist falsch gesetzt.
Es wird ja ein Hashref erwartet. Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 #!/usr/bin/perl use strict; use warnings; use CGI; my $q = CGI->new; my %data = ('url' => '/some/page.html'); my $cookie = $q->cookie('url' => \%data); print $cookie->as_string; Code: (dl
)
url=url&%2Fsome%2Fpage.html; path=/kristian |