Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\Lcbo\flash_import.php on line 6
this is the error i get from this code:
require_once("Connections/LCconnect2.php");
$myquery = mysql_query("SELECT pro_brand FROM product_information ORDER BY pro_id DESC");
print "&winetitle=";
while($row=mysql_fetch_array($myquery)){ //<----line 6
print $row['pro_brand']."|";
}
is it something to do with my query ?