Help for this page

Select Code to Download


  1. or download this
      use Class::CGI
        handlers => {
    ...
      my $date = $cgi->param('invoice_date');
      my $date = $cgi->param('sales_date');
      my $day  = $date->day;
    
  2. or download this
      use Class::CGI
        handlers => {
    ...
      my $date = $cgi->param('invoice_date');
      my $date = $cgi->param('sales_date');
      my $day  = $date->day;
    
  3. or download this
    package My::Date::Handler;
    
    ...
          );
      }
      1;
    
  4. or download this
      use Class::CGI
        handlers => {
    ...
      my $sales_date = $cgi->param('sales_date');
      my $customer = $cgi->param('customer_id');
      my $referrer = $cgi->param('referrar_id');