Windows NT P3613 10.0 build 20348 (Windows Server 2022) AMD64
C:
/
Inetpub
/
vhosts
/
gyandeepclasses.com
/
pdpandyamcc.com
/
C:/Inetpub/vhosts/gyandeepclasses.com/pdpandyamcc.com/InfrastructureDetail.php
<?php include_once('header.php'); include_once('dbconfig.php'); if(isset($_GET['id'])==false) header("location: infrastructure.php"); $id = $_GET['id']; $query = "SELECT * FROM infraimages where infraid=$id"; $result = $conn->query($query); ?> <section class="hero-wrap hero-wrap-2" style="background-image: url('images/banner1.jpg');"> <div class="overlay"></div> <div class="container"> <div class="row no-gutters slider-text align-items-center justify-content-center"> <div class="col-md-9 ftco-animate text-center"> <h1 class="mb-2 bread">Infrastructure Details</h1> <p class="breadcrumbs"><span class="mr-2"><a href="index.html">Home <i class="ion-ios-arrow-forward"></i></a></span> <span>Infrastructure Details<i class="ion-ios-arrow-forward"></i></span></p> </div> </div> </div> </section> <!-- recent_event_area_strat --> <div class="container"> <div class="section-top-border"> <div class="row justify-content-center mb-5 pb-2"> <div class="col-md-8 text-center heading-section ftco-animate"> <h2 class="mb-4">Images</h2> <!-- <p>Separated they live in. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country</p> --> </div> </div> <section class="ftco-gallery"> <div class="container-wrap"> <div class="row no-gutters"> <?php if ($result->num_rows > 0) { while ($row = $result->fetch_assoc()) { $imagePath = $row['image']; ?> <div class="col-md-4 ftco-animate"> <a href="infraimages/<?php echo $imagePath; ?>" class="gallery image-popup img d-flex align-items-center" style="background-image: url('infraimages/<?php echo $imagePath; ?>');"> <div class="icon mb-4 d-flex align-items-center justify-content-center"> <span class="icon-instagram"></span> </div> </a> </div> <?php } } ?> </div> </div> </section> <br> <!-- <div class="row gallery-item"> <?php if ($result->num_rows > 0) { while ($row = $result->fetch_assoc()) { $imagePath = $row['image']; ?> <div class="col-md-4"> <a href="infraimages/<?php echo $imagePath; ?>" class="img-pop-up"> <div class="single-gallery-image" style="background: url('infraimages/<?php echo $imagePath; ?>'); background-size: cover; width: 100%; height: 200px;"></div> </a> </div> <?php } } ?> </div> --> </div> </div> <?php include_once("footer.php"); ?>