|
|
|
ช่วยดู Error SQL ให้หน่อยครับ มัน ERror ครับ หาเท่าไหร่ก็หาไม่เจอ |
|
|
|
|
|
|
|
Code
Errror
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\Laundry\manage.php on line 73
ช่วยดูให้หน่อยครับ
Code (PHP)
<?
session_start();
if($_SESSION['Emp_ID'] == "")
{
echo "Please Login!";
exit();
}
/* if($_SESSION['Status'] != "ADMIN")
{
echo "This page for Admin only!";
exit();
} */
mysql_connect("localhost","root","root");
mysql_select_db("laundry");
$strSQL = "SELECT * FROM employee WHERE Emp_ID = '".$_SESSION['Emp_ID']."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
$Emp_ID = $_SESSION['Emp_ID'];
$Emp_Name = $objResult['Emp_Name'];
$Date = date("Y-m-d"); // เก็บ วัน/เดือน/ปี ที่สั่งซื้อ
$Time = date("H:i:s"); // เก็บเวลาที่สั่งซื้อ
?>
<?php
include "dbconfig.php";
conndb();
?>
<html>
<head>
<title>การเพิ่มใบสั่งซื้อสินค้า</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<script Language="Javascript">
<!--
function Conf(object) {
if (confirm("โปรดยืนยันการลบ ?") == true) {
return true;
}
return false;
}
//-->
</script>
<style>
BODY {
FONT-FAMILY: Arial, Helvetica, sans-serif;
background-image: url(images/200807-08-115541-1.jpg);
}
</style>
</head>
<body>
<p align="center"> </p>
<p align="center"> </p>
<p align="center"><strong>- รายงานบิลในฐานข้อมูล -</strong></p>
<p align="center">
<font size="3"><<
<a href="managebill.php">เรียกดูใบสั่งซื้อสินค้าในฐานข้อมูล</a> >>
<< <a href="Bill.php">เพิ่มใบสั่งซื้อสินค้าลงฐานข้อมูล</a> >></font></p>
<?php
// ทำการอ่านว่ามี รายการสั่งซื้อไหมจากตาราง order
$strSQL = "select * From Order_ID order by Order_ID";
$result = mysql_query($strSQL);
$Num_Rows = mysql_num_rows($result);
// ถ้าไม่มีรายการสั่งซื้อ
if($Num_Rows == 0)
{
echo "<center>
<table border=\"1\" style=\"border-style:dotted; border-collapse: collapse; padding-left:4; padding-right:4; padding-top:1; padding-bottom:1\" bordercolor=\"#111111\" width=\"60%\" id=\"AutoNumber1\" height=\"138\">
<tr>
<td height=\"136\">
<center>
<font size=\"5\" color=\"#000080\">ไม่พบบิลในฐานข้อมูล !!</font><br><br>
<font size=\"4\"><a href=\"managebill.php\">[ตกลง]</a></font>
</center>
</td>
</tr>
</table>
</center>";
}
// ถ้ามีรายการสั่งซื้อ
else
{
// ดึงข้อมูลใบสั่งซื้อออกมาก่อน
while ($rs = mysql_fetch_array($result)){
$Order_ID = $rs['Order_ID'];
?>
<center>
<table width="550" border="1" style="border-collapse: collapse; border: 1px dotted #008000" bordercolor="#111111" cellpadding="0" cellspacing="0">
<tr>
<td style="border: 1px dotted #008000" bgcolor="#FFCCFF" width="550" colspan="3">
<p align="left">
<font color="#800000"> ชื่อ - นามสกุล : <? echo $Emp_Name; ?><br>
ที่อยู่ : <? echo $rs['Address']; ?>
</font></td>
</tr>
<tr>
<td style="border: 1px dotted #008000" bgcolor="#CCFFCC" width="350" colspan="1">
<font><p align="left"> หมายเลขบิล : <? echo sprintf("%05d",$rs['Order_ID']); ?></p></font></td>
<td style="border: 1px dotted #008000" bgcolor="#CCFFCC" width="200" colspan="2">
<font><p align="left"> วันที่ออกบิล : <? echo $rs['Order_Date']; ?></p></font></td>
</tr>
<tr>
<td style="border: 1px dotted #008000" bgcolor="#FFFFCC" width="350">
<font color="#000080"><center>ชื่อสินค้า</center></font></td>
<td style="border: 1px dotted #008000" bgcolor="#FFFFCC" width="110">
<font color="#000080"><center>ราคาต่อหน่วย</center></font></td>
<td style="border: 1px dotted #008000" bgcolor="#FFFFCC" width="90">
<font color="#000080"><center>จำนวนที่ซื้อ</center></font></td>
</tr>
<?php
// ทำการอ่านรายการสินค้าที่ถูกสั่งซื้อเข้ามา สำหรับใบสั่งซื้อในแต่ละใบ
$strSQL2 = "select * From orderdetails where Order_ID = '$Order_ID' order by orderdetails_id";
$result2 = mysql_query($strSQL2);
// ดึงข้อมูลรายการสินค้าที่ถูกสั่งซื้อออกมา
while ($rs2 = mysql_fetch_array($result2)){
?>
<tr>
<td style="border: 1px dotted #008000" bgcolor="#CCFFFF" width="350"><p align="left">
<?
echo $rs2['ServiceID']; // แสดงชื่อสินค้าออกมา
?>
</p></td>
<td style="border: 1px dotted #008000" bgcolor="#CCFFFF" width="110"><p align="right"><?php echo number_format($rs2['Price'],2,'.',','); ?> </p></td>
<td style="border: 1px dotted #008000" bgcolor="#CCFFFF" width="90"><p align="right"><?php echo number_format($rs2['Qty'],0,'.',','); ?> </p></td>
</tr>
<?php
}
?>
<tr id="command">
<td style="border: 1px dotted #008000" bgcolor="#FFCCFF" colspan="3" align="center" width="550">
<font>[ <a href="delete_bill.php?Bill_ID=<?=$Bill_ID;?>" OnClick="return Conf(this)">ลบ</a> ]</font></td>
</tr>
</table>
</center>
<br>
<?
}
}
?>
<br>
<center></center>
</body>
</html>
Tag : PHP, Ms Access, MySQL, HTML/CSS, JavaScript, CakePHP
|
|
|
|
|
|
Date :
2012-02-26 17:18:28 |
By :
Dongonline |
View :
904 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$strSQL = "select * From Order_ID order by Order_ID";
ชื่อตาราง From Order_ID ใช่ ออเด้อ ไอดีหรอครับ
|
|
|
|
|
Date :
2012-02-26 17:28:24 |
By :
Thank You |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กำ จิงด้วย
ขอบคุณ มาก ๆ เลยครับ
กำลังจะพรีเซ้นโปรเจคครับ ต้องแก้โค๊ดให้ครบ
|
|
|
|
|
Date :
2012-02-26 17:31:18 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|