|
|
|
รบกวนช่วยแก้ให้ทีน่ะคับ ผมต้องการที่จะส่งค่าไปคำนวนในหน้าเดียวกัน แต่ค่าไม่มาเลย TT |
|
|
|
|
|
|
|
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css" align="center">
body,td,th {
font-family: Tahoma, Geneva, sans-serif;
font-size: 14px;
}
body {
}
</style>
</head>
<body>
<p>
<?php
include ('connect.php');
$emp_id = $_REQUEST["emp_id"];
$sql1="SELECT * FROM employee WHERE emp_id ='$emp_id' ";
$record1=mysql_query($sql1) or die(mysql_error());
$data1 = mysql_fetch_assoc($record1);
?>
<center>
<form name="frmMain" method="post" action="">
<table width="250" border="0">
<tr>
<th width="119" height="30" colspan="4" align="left" bgcolor="#99CCFF"><?php echo $data1['emp_id'];?> : <?php echo $data1['emp_name'];?> <?php echo $data1['emp_lname'];?></th>
</tr>
</table>
<table width="250" border="1">
<tr>
<td width="80" height="30" bgcolor="#FFFFFF" align="right"><strong>วันที่ :</strong></td>
<td width="154" height="30" bgcolor="#FFFFFF"> <input type="date" name"txt_date1" id="txt_date1" /></td>
</tr>
<tr>
<td bgcolor="#FFFFFF" align="right"><strong>ถึงวันที่ :</strong></td>
<td bgcolor="#FFFFFF"> <input type="date" name"txt_date2" id="txt_date2" /></td>
</tr>
<tr>
<td colspan="2" height="30" align="center" bgcolor="#FFFFFF"><input type="submit" name="submit" value="ตกลง"/>
<input type="reset" name="btnreset" id="btnreset" value="ล้าง" /></td>
</tr>
</table>
</form>
<br />
<?php
$emp_id = $_POST["emp_id"];
$date1 = $_POST["txt_date1"];
$date2 = $_POST["txt_date2"];
$now = date('Y-m-d');
$sql = "SELECT COUNT( amount )
FROM commission
WHERE emp_id = '$emp_id'
AND date_com >= '$date1'
AND date_com <= '$date2'";
$result = mysql_query($sql) or die(mysql_error());
$data = mysql_fetch_assoc($result);
?>
<table width="320" border="1">
<tr>
<td width="170" height="30" align="right" bgcolor="#FFFFFF"><strong>รหัสพนักงาน :</strong></td>
<td width="134" bgcolor="#FFFFFF"> <?php echo $data['emp_id']?></td>
</tr>
<tr>
<td height="30" align="right" bgcolor="#FFFFFF"><strong>วันที่จ่ายเงินค่าคอมมิชชั่น :</strong></td>
<td bgcolor="#FFFFFF"> <?php echo $now ?></td>
</tr>
<tr>
<td height="30" align="right" bgcolor="#FFFFFF"><strong>วันที่เริ่มคิดเงิน :</strong></td>
<td bgcolor="#FFFFFF"> <?php echo $date1 ?></td>
</tr>
<tr>
<td height="30" align="right" bgcolor="#FFFFFF"><strong>วันที่สิ้นสุดการคิดเงิน :</strong></td>
<td bgcolor="#FFFFFF"> <?php echo $date2 ?></td>
</tr>
<tr>
<td height="30" align="right" bgcolor="#FFFFFF"><strong>รวมจำนวนยอดรถ :</strong></td>
<td bgcolor="#FFFFFF"> <?php echo COUNT(amount) ?> คัน</td>
</tr>
<tr>
<td height="30" align="right" bgcolor="#FFFFFF"><strong>ค่าคอมมิชชั่นต่อคัน :</strong></td>
<td bgcolor="#FFFFFF"> 2,000 บาท</td>
</tr>
<tr>
<td height="30" align="right" bgcolor="#FFFFFF"><strong>รวมเป็นเงิน :</strong></td>
<td bgcolor="#FFFFFF"> <?php echo number_format($sum=(COUNT(amount)*2000),2) ?> บาท</td>
</tr>
</table>
</center>
</body>
</html>
เขียน tag php ให้เต็มด้วยนะครับ
Code (PHP)
<?php
//your CODE
?>
|
|
|
|
|
Date :
2014-05-24 08:29:33 |
By :
geidtiphong |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันไม่ขึ้นอ่ะคับพี่ เหมือนเดิมเลยคับ TT
|
|
|
|
|
Date :
2014-05-24 12:09:39 |
By :
smilearth |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
action=""
|
|
|
|
|
Date :
2014-05-25 14:25:31 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|