|
|
|
ช่วยดูโค็ตการออกรายงานให้หน่อยครับ ออกได้แต่ไม่มีข้อมูลที่ search ไว้ |
|
|
|
|
|
|
|
Code (PHP)
<?
header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment; filename=report_sale_show.doc");
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<html>
<body>
<?php
require('conn_mysql.php');
if($_GET['txtKeyword'] != ""){
$query = "SELECT * FROM tborder,order_details where order_details.order_detail_no = tborder.order_no (mounts like '%".trim($_GET["txtKeyword"])."%') ";
$result = mysql_query($query) or die("Query failed");
if(mysql_num_rows($result) == 0){
echo "Nothing to Display!";
}
$bgcolor = "#E0E0E0";
echo "<div align=center>";
echo "<b>บริษัทไทยน้ำกรอง</b>";
echo "<br>";
echo "<br>";
echo "<b>รายงานการสั่งซื้อสินค้าจากลูกค้า</b>";
echo "<br>";
echo "<br>";
print "<table border=3>\n";
echo"<tr><th>รหัสการสั่งซื้อ</th><th>รหัสลูกค้า</th><th>ราคารวม</th><th>รหัสสินค้า</th><th>จำนวนสินค้า</th><th>วันที่สั่งซื้อ</th></tr>";
while ($row = mysql_fetch_array($result)) {
if ($bgcolor == "#DFE6EF"){
$bgcolor = " #FFFFCC";
}else{
$bgcolor = "#DFE6EF";
}
echo "<tr bgcolor=",$bgcolor,">";
echo"<td>",$row["order_no"],"</td>\n";
echo"<td>",$row["customer_id"],"</td>\n";
echo"<td>",$row["pricetotal"],"</td>\n";
echo"<td>",$row["product_code"],"</td>\n";
echo"<td>",$row["quantity"],"</td>\n";
echo"<td>",$row["dates"],"</td>\n";
$order_no = $row["order_no"];
print"\t</tr>\n";
print"\t</tr>\n";
}
}
print"</table>\n";
mysql_close($conn);
?>
</body>
</html>
พอดีผมหน้าออกรายงาน โดยค้นหา ตามเดือน แต่พอออกรายงานออกมา ไม่มีข้อมูลด้านในรายงาน งง
ใช้ค้นหาฟิวนี้อ่าครับ mounts ในตาราง tborder
Tag : PHP
|
|
|
|
|
|
Date :
2011-01-14 03:33:52 |
By :
beer656 |
View :
825 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เติม and ไปแล้ว มันก็ยังไม่ขึ้นข้อมูลที่ search มาให้ครับ ทำไงดีครับ ยังไม่ได้เลยครับ
|
|
|
|
|
Date :
2011-01-14 14:07:20 |
By :
beer656 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เงียบหายกันหมดเลย
|
|
|
|
|
Date :
2011-01-14 23:39:55 |
By :
beer656 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
echo $query;
$result = mysql_query($query) or die("Query failed");
ลองเอาค่าที่ได้ไปทดสอบใน phpMyAdmin น่ะครับ
|
|
|
|
|
Date :
2011-01-15 07:58:35 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันก็ยัง ไม่มีข้อมูล ออกมาครับ ไปทดสอบ echo คิวรี่ก็แล้ว ก็ยังไม่มีข้อมูลอ่าครับ เกืดมาจากสาเหตุไรหรอครับ
|
|
|
|
|
Date :
2011-01-15 15:43:28 |
By :
beer656 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|