- 论坛徽章:
- 0
|
求助:关于cookie的一个奇怪问题(在线等)
多谢,指点。但问题似乎没有解决?
#!/usr/bin/perl
use CGI qw(:standard);#CGI:Cookie;
use common;
use CGI::Carp qw(fatalsToBrowser);
my $code=time();
my $cookieSSO=cookie( -name=>;'code',
-value=>;$code
);
my $cookieSSO1=cookie( -name=>;'code1',
-value=>;$code
);
$url="testSSO.cgi?code=$code";
print header(-type=>;"text/html", -charset=>;"gb2312",-location=>;$url,-cookie=>;[$cookieSSO,$cookieSSO1]);
其中在testSSO.cgi页面中:只有
#!/usr/bin/perl -w
# user login
#use strict;
use DBI;
use CGI qw(:standard :netscape *table);
print "Content-type: text/html\n\n";
print "code from cookie is: ".cookie('code')."
;";
print "ZZZZZZZZZZusername is: ".cookie('code1')."\n";
运行结果为:code from cookie is:
ZZZZZZZZZZusername is: 1130136611
要是改为:print header(-type=>;"text/html", -charset=>;"gb2312",-location=>;$url,-cookie=>;[$cookieSSO1,$cookieSSO]);的话,就是:第一个cookie值可以得到,但得不到第二个?为什么呢? |
|