<?php
function FutureValueofAnnuity($pmt$interest$periods) {
  return (((
pow(($interest), $periods) - 1) / $interest) * $pmt);
}
?>