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/base24rooftop.com/public_html/ |
<?php session_start();
$page_name = basename($_SERVER['PHP_SELF']);
$page_title = "Entertainment Services";
$page_header = "efb5fab84c.jpg";
include("header.php"); ?>
<title><?php echo $company_name; ?> - <?php echo $page_title; ?></title>
<?php include("page_header.php"); ?>
<section class="services-page section-space-top section-space-bottom2">
<div class="container">
<div class="row gutter-y-30">
<?php
$icon_array = array("fa-wine-bottle", "fa-utensils", "fa-music", "fa-bowling-ball", "fa-gamepad", "fa-glass-cheers");
$stmt_ser = $con -> prepare("SELECT unique_id,heading,preamble,picture 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()) {
$random_icon = $icon_array[array_rand($icon_array)];
?>
<div class="col-xl-4 col-md-6 wow fadeInUp" data-wow-duration="1500ms" data-wow-delay="00ms">
<div class="service-card-two">
<div class="service-card-two__bg" style="background-image: url(site_img/<?= "services" ?>/<?= $picture ?>)"></div>
<div class="service-card-two__content">
<div class="service-card-two__icon-box">
<span class="service-card-two__icon"><i class="fa <?= $random_icon ?>"></i></span>
</div>
<h3 class="service-card-two__title"><a href="details?u=<?= $ser_id; ?>&title=<?= "services"; ?>"><?= $service_head; ?></a></h3>
<p class="service-card-two__text"><?= $service_preamble; ?></p>
</div>
<a href="details?u=<?= $ser_id; ?>&title=<?= "services"; ?>" class="service-card-two__btn">
<span class="service-card-two__btn__icon"><i class="icon-back"></i></span>
</a>
<img src="assets/images/shapes/service-card-shape-2-1.png" alt="shape" class="service-card-two__shape">
</div>
</div>
<?php } } ?>
</div>
</div>
</section>
<?php include("footer.php") ?>