> if ($year % 4) = 0{$complete_months_contribution ++}; oops ... this will only get incremented if we are into march and it is a leap year, so we'll need to test if $monthnum > 2 as well: if ( ($year % 4 = 0 ) && ($monthnum > 2) ){$complete_months_contribution ++};
- [MacPerl-AnyPerl] input to formatted date allan
- Re: [MacPerl-AnyPerl] input to formatted date Scott R. Godin
- Re: [MacPerl-AnyPerl] input to formatted d... John Murray
- Re: [MacPerl-AnyPerl] input to formatt... John Murray
- Re: [MacPerl-AnyPerl] input to for... Christian Brechbuehler
- Re: [MacPerl-AnyPerl] input to formatt... Ronald J Kimball
- Re: [MacPerl-AnyPerl] input to for... John Murray
- Re: [MacPerl-AnyPerl] input to formatted date Scott R. Godin
- Re: [MacPerl-AnyPerl] input to formatted date Bart Lateur