Botiga_php

Botiga php

Products

'); include_once('form.php'); echo(''); ?>
= $minProductPrice"; if ($maxProductPrice != "empty") $sqlString .= " AND bp_product_price <= $maxProductPrice"; if ($productOrder != "asc") $sqlString .= " ORDER BY bp_product_name DESC"; $sql = $con->prepare($sqlString); } else { $sql = $con->prepare("SELECT bp_product_id, bp_product_name, bp_product_price, bp_product_img_01 FROM bp_products"); } $sql->execute(); $sql->bind_result($bp_product_id, $bp_product_name, $bp_product_price, $bp_product_img_01); while ($sql->fetch()) { echo (" "); } ?>