Server : LiteSpeed System : Linux us-phx-web1202.main-hosting.eu 4.18.0-553.84.1.lve.el8.x86_64 #1 SMP Tue Nov 25 18:33:03 UTC 2025 x86_64 User : u615232177 ( 615232177) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/u615232177/domains/sabrinaluxebraidedwigs.com/public_html/ |
<?php session_start();
$page_name = basename($_SERVER['PHP_SELF']);
include("header.php"); ?>
<title><?php echo $company_name; ?> - Delivery Zone</title>
<!-- Title Page -->
<section class="bg-title-page p-t-40 p-b-50 flex-col-c-m" style="background-image: url(images/banner-min.jpg);">
<h2 class="l-text2 t-center">
<div class='space_top'></div>
Delivery Zones
</h2>
</section>
<br/>
<section class="products spad">
<div class="col-lg-12">
<?php $show = "Show";
$stmt_de = $con -> prepare('SELECT * FROM delivery_zones WHERE display=?');
$stmt_de -> bind_param('s',$show);
$stmt_de -> execute();
$stmt_de -> store_result();
$stmt_de -> bind_result($id_dz,$fee,$zone,$locations,$dis);
$numrows_de = $stmt_de -> num_rows();
if($numrows_de > 0){
while ($stmt_de -> fetch()) {
echo"<b>$currency$fee</b> Zone$zone - $locations <hr> ";
}}
?>
</div>
</section>
<?php include("footer.php"); ?>