Help for this page

Select Code to Download


  1. or download this
    use strict; use CGI ':standard';
    use CGI::Carp 'fatalsToBrowser';
    ...
    print start_html('Test');
    print Dumper($CS->{_QUERY}->{'.cookies'}->{CGISESSID});
    print end_html;
    
  2. or download this
    my $cookie=CGI::Cookie->new(
      -name=>$CS->name,
    ...
    );
    
    print header(-cookie=>$cookie);