Help for this page

Select Code to Download


  1. or download this
    use Class::CGI
      handlers => {
        customer => {
    ...
    my $cgi  = Class::CGI->new;
    my $cust = $cgi->param('customer');
    my $zip  = $cgi->param('zip');
    
  2. or download this
    use Class::CGI
      profiles => $profile,
      use      => 'customer';
    
  3. or download this
    use Class::CGI
      profiles   => $profile,
      from_param => '__PROFILE__';