i am using 7.4.1, but for some reason i cant get a simple sql query to work. It is a duplicate from an earlier version of dolphin - in which it does work, but not working in the latest version. Any help would be greatly appreciated.
Thanks in advance.
$Products = mysql_query("SELECT * FROM oc_product");
while ($row = mysql_fetch_array($Products)) {
$product_id = $row["product_id"];
echo ' ' . $product_id . ' ' ;
}