วันพฤหัสบดีที่ 8 มีนาคม พ.ศ. 2555

การเขียน function เพื่อใช้ในการคำนวณ


<meta http-equiv="Content-Type" content="text/html; charset=TIS-620">
<form name="cal" method="post" action="cal.php">

<table width="0" border="0">
<tr>
<td>&nbsp;</td>
<td colspan="2"><h2>ตารางคำนวนเงินกู้</h2></td>
</tr>
<tr>
<td width="170">จำนวนเงินกู้ :</td>
<td width="269" colspan="2"><input type="text" name="totalloan" id="totalloan"></td>
</tr>
<tr>
<td>อัตราดอกเบี้ยต่อปี :</td>
<td colspan="2"><input type="text" name="interest" id="interest"></td>
</tr>
<tr>
<td>จำนวนงวด :</td>
<td colspan="2"><input type="text" name="month" id="month"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="submit" id="submit" value="คำนวน"></td>
<td>
<input type="reset" name="reset" id="reset" value="ล้าง Form">
</td>
</tr>
</table>
</form>

<?php
function calloan($totalloan,$interest,$month){
if ($month>12)
{
$calinterest = ($month / 12)*$interest;
$totalinterest = $calinterest /"100";
}
else
{
$totalinterest = $interest / "100";
}
$amount_interest = $totalloan * $totalinterest;
$amount = ($totalloan + $amount_interest)/$month;

print "<b>จำนวนเงินที่ต้องชำระต่อเดือน :<font color=#0066FF> " .round($amount,2)."</font> บาท</b>";
print "<br><br><a href ='cal.php'>Click เพื่อเริ่มต้นใหม่</a>";
}
$totalloan = $_POST["totalloan"];
$interest = $_POST["interest"];
$month = $_POST["month"];

if($_POST["submit"]){

if($totalloan && $interest && $month){
print calloan($totalloan,$interest,$month);
}
else{
print "กรุณากรอก Form ให้ครบ";
}

}
else
{

}
?>

ไม่มีความคิดเห็น:

แสดงความคิดเห็น