Help for this page

Select Code to Download


  1. or download this
    use DateTime;
    use Date::Format;
    ...
    
    my $start_date = DateTime->today->subtract( months => 1);
    print $start_date->strftime("%m%d%y");
    
  2. or download this
    my $start_date = DateTime->today->subtract( months => 1);
    $start_date->strftime("%m%d%y");
    ...
    $mech->select("format", "2");
    $mech->click();