ไม่แสดงรายงานยอดขายประจำเดือนค่ะ ช่วยด้วยค่ะ <?php include( "phpConfigCart.php" );?>
<?php
include( "phpConfigCart.php" );?>
<div align="center"> รายงานการขายประจำเดือน</div>
</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>
<form name="form2" method="post" action="sale_monthsum.php">
<div align="center"><br>
เดือน
<select name="keymonth">
<option value="มกราคม">มกราคม</option>
<option value="กุมภาพันธ์">กุมภาพันธ์</option>
<option value="มีนาคม">มีนาคม</option>
<option value="เมษายน">เมษายน</option>
<option value="พฤษภาคม">พฤษภาคม</option>
<option value="มิถุนายน">มิถุนายน</option>
<option value="กรกฎาคม">กรกฎาคม</option>
<option value="สิงหาคม">สิงหาคม</option>
<option value="กันยายน">กันยายน</option>
<option value="ตุลาคม">ตุลาคม</option>
<option value="พฤศจิกายน">พฤศจิกายน</option>
<option value="ธันวาคม">ธันวาคม</option>
</select>
ปี พ.ศ.
<select name="order_date ">
<?php
Conn2DB();
$strSQL = "select * From orders_enroll where order_date='$order_date' ";
$result = mysql_query( $strSQL, $conn );
while ( $rs = mysql_fetch_array( $result ) )
{
echo "<option value=\"$rs[order_id]\">$rs[order_date]</option>\n";
}
CloseDB();
?>
</select>
<input type="submit" name="Submit" value="ตกลง">
<input onClick=javascript:history.back(1) type=button value="<<กลับ" name="button">
</div>
</form>
</td>
</tr>
<tr>
<td>
<?
if (empty($keymonth)&&empty($keyyear))
{
echo"<center>กรุณากรอกข้อมูลด้วยค่ะ</center>";
exit();
}
$host="localhost";
$username="";
$pass_word="";
$db="484279024";
mysql_connect( $host,$username,$pass_word) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้");
//$sql = "select * From orders_enroll where year ='$keyyear' and month ='$keymonth' group by order_id";
$sql = "select * From orders_enroll where year ='$keyyear' and month ='$keymonth' ";
$Per_Page =10; // แสดงหน้าละ 3
if(!$Page)
$Page=1;
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$result = mysql_query($sql);
$Page_start = ($Per_Page*$Page)-$Per_Page;
$Num_Rows = mysql_num_rows($result);
if($Num_Rows<=$Per_Page)
$Num_Pages =1;
else if(($Num_Rows % $Per_Page)==0)
$Num_Pages =($Num_Rows/$Per_Page) ;
else
$Num_Pages =($Num_Rows/$Per_Page) +1;
$Num_Pages = (int)$Num_Pages;
if(($Page>$Num_Pages) || ($Page<0))
print "<center><b>จำนวน $Page มากกว่า $Num_Pages ยังไม่มีข้อความ<b></center>";
$sql = "select * From orders_enroll where year ='$keyyear' and month ='$keymonth' group by order_date LIMIT $Page_start , $Per_Page";
//ส่วนแสดงผล
$swap="2";
$result = mysql_query($sql);
?>
<table width="200" border="1" align="center" cellpadding="1" cellspacing="0" bgcolor="A5CBFF">
<tr>
<td width="10%">
<div align="center"><font color="#000000">วันที่</font></div>
</td>
<td width="10%">
<div align="center"><font color="#000000">ยอดขาย</font></div>
</td>
</tr>
</table>
<?
$sum=0;
While($row= mysql_fetch_array($result)){
if ($swap=="1") {
$color = "#FFFFFF";
$swap = "2";
}
else {
$color = "#d8e0f0";
$swap = "1";
}
//$c_name=$row[c_name];
$order_id=$row[order_id];
$quantity=$row[quantity];
$order_date = $row[order_date];
$month = $row[month];
$year = $row[year];
?>
<table width="200" border="1" align="center" height="23" cellpadding="1" cellspacing="0" >
<tr>
<td width="10%" height="2">
<div align="center">
<? echo" $order_date";
echo"<a href=\"sale_month4.php?order_id=$order_id&&order_date=$order_date\">$order_date</a>"
?>
</div>
</td>
<td width="10%" height="2">
<div align="center">
<?
//$total = 0;
$sql2 = "select * From orders_enroll where order_date='$order_date' ";
$result2 = mysql_query($sql2);
While($row2= mysql_fetch_array($result2)){
//$price = $rs[unit_pro]*$rs[price_pro];
$total += $row2[quantity]*$row2[pro_sell_price];
}
echo number_format( $total, 2, '.', ',' );
?>
</div>
</td>
</tr>
</table>
<?
$sum += $total;
}
echo"$sum";
?>
<br>
<table width="200" border="1" align="center" height="23" cellpadding="1" cellspacing="0" >
<tr>
<td width="10%" height="2">
<div align="center"> ยอดรวม</div>
</td>
<td width="10%" height="2">
<div align="center">
<? echo number_format( $sum, 2, '.', ',' );?>
</table>
</body>
</html>Tag : - - - -
Date :
2009-06-02 01:07:32
By :
fitree
View :
2622
Reply :
2
echo "<option value=\"$rs[order_id] \">$rs[order_date]</option>\n"; เพราะตรงนี้หรือเปล่า ตัวหนาอะ
Date :
2009-06-02 01:27:40
By :
plakrim
ขอ sql ด้วยจ้า เดียวดูให้
Date :
2009-06-02 02:09:03
By :
darkninja
Load balance : Server 05