Hi guys i am populating products from db, but the images does not showing sequentially, there are gaps between images ,,how i can fix this
this is my code:
<?php
$query = "SELECT * FROM products";
$select_products = mysqli_query($connection, $query);
while ($row = mysqli_fetch_assoc($select_products)){
$product_id = $row['product_id'];
$product_title = $row['product_title'];
$product_image = $row['product_image'];
$product_description = $row['product_description'];
$product_quantity = $row['product_quantity'];
$product_price = $row['product_price'];
$short_