Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\E-COMMERCE\admin\inventory_list.php on line 66
line 66:
$productCount= mysql_num_rows($sql); //count the output amount
<?php
//block grab the whole list for viewing
$product_list = "";
$sql = mysql_query("SELECT * FROM products ORDER BY date_added DESC");
$productCount= mysql_num_rows($sql); //count the output amount
if($productCount > 0)
{