in reply to CGI::Session multiple cookies

To simplify #session.pl
# Object initialization: use CGI::Session; $session = new CGI::Session(undef, undef, {Directory=>'c:\perl\temp\se +ssions'}); # send proper HTTP header with cookies: print $session->header(); print $session->header(); print "click <A href='session2.pl'> here";
#session2.pl
# Object initialization: use CGI::Session; $session = new CGI::Session(undef, undef, {Directory=>'c:\perl\temp\se +ssions'}); # send proper HTTP header with cookies: print $session->header(); print $session->header();
the double print is to show the session on the page.
both times the cookies are set in Firefox but change the moment I click to next page. Host and path are both the same...

...insane in the membrane...