| 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 = "Industrial Visit";
include("../admin/connection.php");
$q_pic = "select * from tbl_gallery where type='industrial' 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">Industrial Visit</h1>
</section>
<!-- end inner banner -->
<div class="row mt-5"></div>
<section class="course">
<div class="container">
<div class="sec-title text-center mb-3" data-aos="fade-up" data-aos-duration="1000">
<span class="title">Industrial Visit</span>
<h2>Some Pics of Industrial Visit</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;">
Industrial visit has its own importance in a career of a student who is pursuing a professional degree.It is considered as a part of college curriculum.
</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>
</section>
<!-- page content end -->
<?php
include('../home_include/footer.php');
?>
</div>
<?php
include('../home_include/footer_link.php');
?>
</body>
</html>