$sql_order="SELECT * FROM bill INNER JOIN order ON bill.bill_id=order.bill_id INNER JOIN product ON product.product_id=order.product_id ORDER BY bill_time " ;
$result=mysql_query($sql_order);
if(mysql_num_rows($result)){....}
แล้วขึ้น error
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\icecream\admin_view.php on line 156
น่าจะเป็นเพราะใช้คำว่า order โดยไม่ quote ด้วย ` ครับ
เพราะ ORDER เป็นคำสงวนของ mysql ครับ
ลองเปลี่ยนเป็น
$sql_order="SELECT * FROM bill INNER JOIN `order` ON bill.bill_id=`order`.bill_id INNER JOIN product ON product.product_id=`order`.product_id ORDER BY bill_time " ;