Percentage increase saving calculator

This is made to help you figure out how to gradually increase how much to put into savings. For instance if you put 100 in savings the first month and you increase the amount you save each month by 20% for 6 months.

0 && $periods < 101){ $p = ($percent / 100) + 1; // eg 10% becomes 1.1 $c = $start; print "\n

“;
for($i=0;$i<$periods - 1;$i++){ $c *= $p; $t += $c; print"\n

“;
}
// print “\n

“;
print “\n

PERIOD AMOUNT TOTAL SAVED
1 $c ” . money_format(‘%i’, $c) . “
” . ($i + 2) . “ $c ” . money_format(‘%i’, $t) . “
TOTAL $t

“;
}
?>

percent

Posted

in

by

Tags:

Comments

Leave a Reply