|
|
|
สอบถาม PHP+MySQL (อัตราค่าจ้าง*วันมาทำงาน) เมื่อ Input วันทำงานแล้วจะแสดงผลลัพธ์รวมเงิน |
|
|
|
|
|
|
|
Code (PHP)
<?php
$sqltxt = "SELECT * FROM employee";
$db_query=mysql_db_query($db,$sql);
$sub_total = $row_Recordset1['emp_price'] * $row_Recordset1['emp_other'] ;
$empoth = $row_Recordset1['emp_other']; {
echo "
<td align=center></td>
<td align=center>{$row_Recordset1['emp_name']}</td>
<td align=center>{$row_Recordset1['emp_lname']}</td>
<td align=center>{$row_Recordset1['emp_dep']}</td>
<td align=center>{$row_Recordset1['emp_price']}</td>
<td align=center>
<input type=text size=10 name=$empoth value={$row_Recordset1['emp_other']} />
</td>
<td>$sub_total</td>
</tr>";
$total = $total + $row_Recordset1['emp_price'];
}
?>
|
|
|
|
|
Date :
2011-12-27 13:19:49 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ได้ครับ...ผมว่ามันต้องแก้ในฐานข้อมูลด้วยนะครับ
เพราะค่า Other มันตั้งเป็น 0 ทำให้ผลลัพธ์ได้เป็น 0 เสมอ
อยากรู้วิธีแก้ครับ
ตัวอย่างฐานข้อมูล
|
|
|
|
|
Date :
2011-12-27 13:46:25 |
By :
imagineverend |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$sqltxt = "SELECT * FROM employee";
$db_query=mysql_db_query($db,$sql);
$sub_total = $row_Recordset1['emp_price'] * $_POST['empoth'] ;
$empoth = $row_Recordset1['emp_other']; {
echo "
<td align=center></td>
<td align=center>{$row_Recordset1['emp_name']}</td>
<td align=center>{$row_Recordset1['emp_lname']}</td>
<td align=center>{$row_Recordset1['emp_dep']}</td>
<td align=center>{$row_Recordset1['emp_price']}</td>
<td align=center>
<input type=text size=10 name='empoth' value={$row_Recordset1['emp_other']} />
</td>
<td>$sub_total</td>
</tr>";
}
?>
|
|
|
|
|
Date :
2011-12-27 17:58:23 |
By :
yogolas |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|