Active filters
0) {
while ($row_products = mysqli_fetch_array($run_products)) {
$pro_id = $row_products['product_id'];
$pro_title = $row_products['product_title'];
$pro_price = $row_products['product_price'];
$pro_img1 = $row_products['product_img1']; // Assuming images are stored correctly in the database
echo '
';
}
} else {
echo '
No products found.
'; } ?>Showing 1- of item(s)
-
1) {
$prev_page = $page - 1;
echo "
- Previous "; } else { echo "
- Previous "; } // Display page numbers for ($i = 1; $i <= $total_pages; $i++) { $active_class = ($i == $page) ? 'current' : ''; echo "
- $i "; } // Display Next button if ($page < $total_pages) { $next_page = $page + 1; echo "
- Next "; } else { echo "
- Next "; } ?>