$strSQL = "select Product_ID,count(*) as cnt from orders_detail group by Product_ID order by cnt desc limit 10";
$rsShowProduct = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
while($showProduct=mysql_fetch_array($rsShowProduct)){
echo $showProduct['cnt'];
echo " =";
echo $showProduct['Product_ID'];
echo "<P>";
$cnt=$showProduct['cnt'];
$pd=$showProduct['Product_ID'];
$strSQL2 = "UPDATE product SET Product_Status ='2' where Product_Id='$pd' ";
$rsShowProduct2 = mysql_query($strSQL2) or die ("Error Query [".$strSQL2."]");
}
$strSQL = "SELECT * FROM product where Product_Status=2 ORDER BY datetime DESC LIMIT 8";
$rsShowProduct = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
ขึ้น error แบบนี้ครับ ขึ้น 2 ครั้ง
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\kombrashop\include\product_hot.php on line 37
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\kombrashop\include\product_hot.php on line 37
Code (PHP)
$strSQL = "select Product_ID,count(*) as cnt from orders_detail group by Product_ID order by cnt desc limit 2";
$rsShowProduct = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
<tr>
<?php while($showProduct=mysql_fetch_array($rsShowProduct)){
$cnt=$showProduct['cnt'];
$pd=$showProduct['Product_ID'];
$strSQL2 = "select * from product where Product_Id='$pd' ";
$rsShowProduct2 = mysql_query($strSQL2) or die ("Error Query [".$strSQL2."]");
?>
<td>
<? while($showProduct2=mysql_fetch_array($rsShowProduct2)){?> //error บรรทัดนี้ครับ
<?php echo "<center><img border=\"1\" src=\"myfile/product/".$showProduct2['Product_Image']."\" width=\"100\" height=\"100\"/>" ?>
<br><img src="picture/bullet-hot.gif" width="25" height="11"><a href="page_product_detail.php?Product_Id=<?php echo $showProduct['Product_Id']; ?>" ><?php echo $showProduct2['Product_Id']; ?>
<?php echo '<br/>'.$showProduct2['Product_Name']?></a>
<?php echo '<br/>ราคา:'.$showProduct2['Product_Saleprice']?>บาท
</center>
</td>
<?php
if($ColumnStart==$setColumn){//หากคอลัมน์เท่ากับจำนวนคอลัมน์ที่กำหนดไว้
echo '</tr><tr>';//สร้างแท็ก </tr> ปิด เพื่อจบแถว และสร้าง <tr>เพื่อสร้างแถวใหม่
$ColumnStart=0;//เซตเป็น 0 เพื่อเริ่มนับคอลัมน์ใหม่
}
$ColumnStart++;//เพิ่มคอลัมน์ทีละ1คอลัมน์
}} ?>