|
|
|
สอบถามครับ อยากทราบว่าใครพอมีโค้ด php ที่คำนวนอัตรเงินกู้ ชพค มั่งครับ นั่งงมมาหลายวันแล้วครับ |
|
|
|
|
|
|
|
แค่ ชพค ผมก็ไม่รู้จักแล้วครับ
จริงๆแล้วมันก็คำนวณแตกต่างกันแค่ตัวเลขน่ะครับ
ถ้าบอกเงินกู้จะหน่วยงานไหนๆมันก็สูตรคล้ายๆกันแหล่ะ
|
|
|
|
|
Date :
2013-09-06 17:24:05 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองแกะแล้ว ซับซ้อนมาก มึนเบย
เอางี้ครับ ลองไล่ไปตามช่องทีละช่องว่ามันเชื่อมโยงอย่างไร สูตรมีอย่างไร
แล้วค่อยๆ แปลงเป็น php ครับ
|
|
|
|
|
Date :
2013-09-06 19:00:14 |
By :
itpcc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมแกะดูแล้ว น่าจะพอทำได้น่ะครับ ลองขยายฟิวด์ excel E,F,G,I,J ออก ก็จะเห็นว่าเค้าไปเอาสูตรมาจากไหน แต่อาจต้องเอาข้อมูลออกมาทำเป็น database เพื่อจะได้คำนวณง่ายกว่านี้
|
|
|
|
|
Date :
2013-09-06 20:10:23 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<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> </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
{
}
?>
|
|
|
|
|
Date :
2013-11-18 15:28:27 |
By :
99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|