|
Server IP : 2a02:4780:3:2287:0:3736:a38e:8 / Your IP : 216.73.216.4 Web Server : LiteSpeed System : Linux sg-nme-web2187.main-hosting.eu 5.14.0-611.54.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 6 18:03:03 EDT 2026 x86_64 User : u926327694 ( 926327694) PHP Version : 7.4.33 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u926327694/domains/jsssakrilawcollegehubli.in/public_html/assets/../ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
include"header.php";
?>
<!-- Start Hero Area -->
<section class="hero-section height-470" style="background-image:url(assets/images/about_us.png)" data-aos="fade-up">
<div class="hero-area">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="page-hrader text-white text-center">
<h1 class="display-3">Facilities</h1>
<div class="page-breadcrumb">
<p><a class="text-white" href="index.php">Home</a> - Depertments</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Hero Area -->
<!--Start Page -->
<div class="page-wrapper section-ptb-6">
<div class="container">
<div class="row">
<?php
$sel_fac=mysqli_query($con,"select * from facilities order by id");
while($res_fac=mysqli_fetch_array($sel_fac))
{
?>
<div class="col-lg-4 col-md-6 mb-5" data-aos="fade-up" data-aos-delay="300">
<div class="single-item">
<div class="item-icon">
<img class="img-fluid" src="admin/pages/Admin/<?php echo $res_fac['photos']; ?>" alt="icon" width="300" height="200">
</div>
<div class="item-text">
<h4><a href="facilities-details.php?id=<?php echo $res_fac['id']; ?>"><?php echo $res_fac['name']; ?></a></h4>
<p><?php echo $res_fac['department']; ?></p>
<p><?php echo substr($res_fac['description'], 0, 100); ?>...</p>
<a href="facilities-details.php?id=<?php echo $res_fac['id']; ?>" class="link_btn mt-2">Read More <i class="fa fa-angle-right"></i> </a>
</div>
</div>
</div>
<?php
}
?>
</div>
</div>
</div>
<!-- End Page -->
<?php
include"footer.php";
?>