= 10 LIMIT 4";
$productResult = mysqli_query($conn, $sql);
// For the new products
$sql = "SELECT product_id, product_name, price, image FROM products WHERE quantity >= 10 ORDER BY product_id DESC LIMIT 4";
$newProductResult = mysqli_query($conn, $sql);
?>
Kumara Stores Online Shopping