| Server IP : 50.63.8.194 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT P3NWVPWEB026 10.0 build 17763 (Windows Server 2016) AMD64 User : IWPD_7824(SpiPanel) ( 0) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : G:/PleskVhosts/polyprep.in/mmitshamli.ac.in/home/ |
Upload File : |
<?php
$title = "Annual Function";
include("../admin/connection.php");
$q_pic = "select * from tbl_gallery where type='annual' order by gal_id desc";
$res_pic = mysqli_query($dbCon, $q_pic);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include('../home_include/header_link.php');
?>
</head>
<body>
<div class="page-wrapper" id="page-wrapper">
<?php
include('../home_include/header.php');
?>
<!-- page content start -->
<!-- start inner banner -->
<section class="inner-banner">
<h1 class="font-weight-bold text-center">Annual Function</h1>
</section>
<!-- end inner banner -->
<div class="row mt-5"></div>
<div class="container">
<div class="sec-title text-center mb-3" data-aos="fade-up" data-aos-duration="1000">
<div class="tab-pane fade show active" id="showall" role="tabpanel" aria-labelledby="showall-tab">
<span class="title">Annual Function 2019</span>
<h2>Some Pics of Annual Function</h2>
<div class="divider">
<span class="fa fa-mortar-board"></span>
</div>
</div>
</div>
</div>
<div class="container">
<p class="text-center" style="font-size:18px;">
Annual function is one of the most important and special functions of any organization. On this particular day, the entire year is wrapped up. It marks as one of the most exciting days as it marks the end of a year with all the memories and moments and, on the other hand, a fresh start to new possibilities, a new year.
</p>
<div class="row mb-5 mt-3" id="gal">
<?php
while($row_pic = mysqli_fetch_assoc($res_pic)){
?>
<div class="col-lg-3 col-sm-12" data-aos="fade-up" data-aos-duration="1000">
<img src="../admin/gallery/<?php echo $row_pic['pic']; ?>" class="img-fluid" alt="Responsive image"/>
</div>
<?php
}
?>
</div>
</div>
<!-- page content end -->
<?php
include('../home_include/footer.php');
?>
</div>
<?php
include('../home_include/footer_link.php');
?>
</body>
</html>