<?php // 52 - Weekly // 26 - Biweekly // 12 - Monthly // 6 - Bimonthly $period = 12; function calculateMortgage($balance,$rate,$term){ global $period; $N = $term * $period; $I = ($rate/100)/$period; $v = pow((1+$I),$N); $t = ($I*$v)/($v-1); $result = $balance*$t; return $result; } $balance = isset($_POST['balance']) ? $_POST['balance'] : ''; $rate = isset($_POST['rate']) ? $_POST['rate'] : ''; $term = isset($_POST['term']) ? $_POST['term'] : ''; ?>
Sorry guys, i left out the most important part of the post, sorry... nothing outside the PHP tags seemed to post. Moderator can you please delete this thread, thanks and sorry again [Problem Solved]