Help for this page

Select Code to Download


  1. or download this
    use base 'TheLib::Foo';
    
    ...
    print $cookie2;}}
    
    1;
    
  2. or download this
    use HTTP::Template;
    
    sub my_infosheet {
    my $self = shift;
    my $template = $self->load_tmpl('my_infosheet');
    (undef, my $info) = split(/\//, $ENV{'PATH_INFO'});
    
  3. or download this
    $template->param(COOKIE1 => $cookie1);
    $template->param(COOKIE2 => $cookie2);
    return $template->output;
    }