> 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
++};




Reply via email to