| 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/mmit_shamli/home/ |
Upload File : |
<?php
$title = "Survey Camp";
include("../admin/connection.php");
$q_pic = "select * from tbl_gallery where type='survey' 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">Survey Camps</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">
<span class="title">Survey Camp For Students</span>
<h2>Some Pics of Survey Camp</h2>
<div class="divider">
<span class="fa fa-mortar-board"></span>
</div>
</div>
</div>
<div class="container">
<p class="text-center" style="font-size:18px;">
The working rule used in survey camp is quite simple, all the groups of students are allotted different stations for survey work. For first couple of days, the students carry out traversing work to determine length of different sides of traverse and included angles between them.
</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>