|
Server : LiteSpeed System : Linux terra.hostitbro.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : outerorb ( 1091) PHP Version : 8.1.34 Disable Function : mail Directory : /home2/outerorb/dev.outerorbittech.com/anant-engg/ | |
|
Path: /home2/outerorb/dev.outerorbittech.com/anant-engg/photo-gallery.php
Size: 5.76 KB
Permissions: 0644
<?php
include_once("include/main.inc.php");
$page_metatitle = "Photo Gallery - ".$admin_res['companyName'];
$page_metakey = "Photo Gallery - ".$admin_res['companyName'];
$page_metadesc = "Photo Gallery - ".$admin_res['companyName'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<?php include "app_top.php"; ?>
</head>
<body>
<?php include "app_header.php"; ?>
<section class="heading_banner" style="background-image: url(<?=site_url;?>/designer/images/gallery-banner.jpg)">
<div class="container">
<div class="row">
<div class="col-xxl-12 col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12 text-center">
<h1 class="cat_title">Photo Gallery</h1>
<div class="clearfix"></div>
</div>
</div>
</div>
</section>
<div class="inner_breadcrumb hidden_xs">
<div class="container">
<div class="row">
<div class="col-xxl-12 col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<ul class="breadcrumb">
<li><a href="<?=site_url;?>" title="Home">Home</a></li>
<li class="active">Photo Gallery</li>
</ul>
</div>
</div>
</div>
</div>
<section class="gallery_page bg-white">
<div class="container">
<h2 class="aboutTitle">Photo <span> Gallery</span></h2>
<p class="w-75 mx-auto mb-4 text-center">Immerse yourself in our captivating photo gallery, showcasing the precision, innovation, and craftsmanship behind our projects. Witness the intricate details and seamless execution that define our commitment to excellence.</p>
<!-- <div class="clearfix"></div>
<h2 class="title_2">Photo Gallery</h2> -->
<div class="clearfix"></div>
<ul class="nav nav-tabs justify-content-center border-0 pb-3">
<li class=" "><a data-bs-toggle="tab" href="#menu0" class="text-center rounded-pill mx-1 border border-muted px-2 py-2 active"><img src="designer/images/product-icon1.webp" alt=""> All</a></li>
<?php $cat_sql1 =mysqli_query($GLOBALS['dbconn'],"select catName, displayName,catID,faq_icon from category_tbl where parentID='0' and status='Y' order by catOrder limit 0,7");
while($cat_res11=mysqli_fetch_array($cat_sql1)){ ?>
<li class=" "><a data-bs-toggle="tab" href="#menu<?=$cat_res11['catID'];?>" class="text-center rounded-pill mx-1 border border-muted px-2 py-2 "><img src="<?=site_url;?>/uploaded-files/category/icons/<?=$cat_res11['faq_icon'];?>" alt="<?=$cat_res11['displayName'];?>" title="<?=$cat_res11['displayName'];?>"> <?=$cat_res11['displayName'];?>
</a></li>
<?php } ?>
</ul>
<div class="tab-content mt-3">
<div id="menu0" class="tab-pane fade in show active">
<div class="row">
<?php $gallery_1 = mysqli_query($GLOBALS['dbconn'], "select image,title,id from photo_tbl order by id ASC ");
while ($gallery_res = mysqli_fetch_assoc($gallery_1)) {
$galImg = getImage($gallery_res[image], 350, 350, $gallery_res[title] . $gallery_res[id], "/uploaded-files/gallery/photos/");
$galImg1 = getImage($gallery_res[image], 600, 600, $gallery_res[title] . $gallery_res[id], "/uploaded-files/gallery/photos/");
?>
<div class="col-xxl-3 col-xl-3 col-lg-3 col-md-6 col-sm-6 col-12">
<div class="gallery_item">
<a class="hover_effect h_yellow" data-fancybox="photo-gallery"
href="<?=$galImg1;?>" title="<?=$gallery_res['title'];?>">
<img src="<?=$galImg;?>" alt="<?=$gallery_res['title'];?>" title="<?=$gallery_res['title'];?>">
</a>
<div class="gallery_item_info">
<h3 class="title_h3"><?=$gallery_res['title'];?></h3>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
<?php $cat_sql11 =mysqli_query($GLOBALS['dbconn'],"select catName, displayName,catID,faq_icon from category_tbl where parentID='0' and status='Y' order by catOrder limit 0,7");
while($cat_res111=mysqli_fetch_array($cat_sql11)){
$catids=$cat_res111['catID'];
?>
<div id="menu<?=$catids;?>" class="tab-pane fade">
<div class="row">
<?php $gallery_11 = mysqli_query($GLOBALS['dbconn'], "select image,title,id from photo_tbl where gallery_cat='$catids' order by id ASC ");
while ($gallery_res = mysqli_fetch_assoc($gallery_11)) {
$galImg = getImage($gallery_res[image], 350, 350, $gallery_res[title] . $gallery_res[id], "/uploaded-files/gallery/photos/");
$galImg1 = getImage($gallery_res[image], 600, 600, $gallery_res[title] . $gallery_res[id], "/uploaded-files/gallery/photos/");
?>
<div class="col-xxl-3 col-xl-3 col-lg-3 col-md-6 col-sm-6 col-12">
<div class="gallery_item">
<a class="hover_effect h_yellow" data-fancybox="photo-gallery"
href="<?=$galImg1;?>" title="<?=$gallery_res['title'];?>">
<img src="<?=$galImg;?>" alt="<?=$gallery_res['title'];?>" title="<?=$gallery_res['title'];?>">
</a>
<div class="gallery_item_info">
<h3 class="title_h3"><?=$gallery_res['title'];?></h3>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
<?php } ?>
</div>
</div>
</section>
<?//php include "app_faq.php"; ?>
<?//php include 'app_clients.php'; ?>
<?php include "app_footer.php"; ?>
<?php include "app_bottom.php"; ?>
</body>
</html>