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/Infrastrcture.php
<?php include_once('header.php'); include_once('dbconfig.php'); $query = "SELECT * FROM infra"; $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</h1> <p class="breadcrumbs"><span class="mr-2"><a href="index.html">Home <i class="ion-ios-arrow-forward"></i></a></span> <span>Infrastructure <i class="ion-ios-arrow-forward"></i></span></p> </div> </div> </div> </section> <!-- recent_event_area_strat --> <div class="container mt-5"> <div class="row mb-4"> <div class="col-12 text-center"> <h3 class="fw-bold">Infrastructure Details</h3> </div> </div> <div class="row"> <?php while ($row = $result->fetch_assoc()): ?> <div class="col-lg-4 col-md-6 mb-4"> <div class="card h-100 shadow-sm border rounded-lg"> <div class="position-relative p-2"> <div class="border rounded"> <img class="card-img-top img-fluid rounded" src="infraimages/<?php echo htmlspecialchars($row['mainimage']); ?>" alt="Event Image" style="height: 250px; object-fit: cover;"> </div> </div> <hr class="my-0"> <div class="card-body p-3"> <h5 class="card-title text-center text-uppercase fw-bold">Title: <?php echo htmlspecialchars($row['title']); ?></h5> <p class="card-text"><strong>Description:</strong> <?php echo htmlspecialchars($row['description']); ?></p> </div> <!-- Button section --> <div class="card-footer bg-white text-center py-3"> <div class="d-flex justify-content-center"> <a href="InfrastructureDetail.php?id=<?php echo htmlspecialchars($row['id']); ?>" class="btn btn-primary w-100 btn-sm">Read More</a> </div> </div> </div> </div> <?php endwhile; ?> </div> </div> <?php include_once("footer.php"); ?>