|
Server IP : 2a02:4780:3:1493:0:3736:a38e:7 / Your IP : 216.73.216.218 Web Server : LiteSpeed System : Linux sg-nme-web1393.main-hosting.eu 4.18.0-553.77.1.lve.el8.x86_64 #1 SMP Wed Oct 8 14:21:00 UTC 2025 x86_64 User : u926327694 ( 926327694) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u926327694/domains/smsoft.in/public_html/arjdwd/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
if(isset($_GET['id']))
{
$id = $_GET['id'];
include('header.php');
$news_letter_class = "newsletter-area-2";
$query_mng = mysqli_query($con,"select * from staff_management where id=$id");
while($res_mng = mysqli_fetch_array($query_mng))
{
?>
<section class="page-banner">
<div class="page-banner-bg bg_cover" >
<div class="container">
<h2 class="about-title custom_title"><span><?php echo $res_mng['staff_type']; ?> Details</span></h2>
</div>
</div>
</section>
<section class="">
<div class="container">
<div class="row teachers-row justify-content-center">
<div class="col-lg-5 col-md-6 col-sm-8 teachers-col">
<div class="single-teacher-details mt-50 text-center">
<div class="teacher-social">
</div>
<div class="teacher-image">
<a href="">
<img src="adminweb/<?php echo $res_mng['photo']; ?>" alt="teacher">
</a>
</div>
</div>
</div>
<div class="col-lg-5 teachers-col">
<div class="teacher-details-content mt-45">
<h4 class="teacher-name"><?php echo $res_mng['name']; ?></h4>
<div>
<span class="designation"><?php echo $res_mng['designation']; ?></span>
<span class="department">Department of <?php echo $res_mng['designation']; ?></span>
</div>
<ul class="teacher-contact">
<li><strong>Email:</strong> <a href="#"><?php echo $res_mng['email']; ?></a></li>
<li><strong>Phone:</strong> <a href="#"><?php echo $res_mng['mobile_number']; ?></a></li>
</ul>
</div>
</div>
</div>
<div class="teacher-details-tab">
<ul class="nav nav-justified" role="tablist">
<li class="nav-item"><a class="active" data-toggle="tab" href="#experience" role="tab">About me</a></li>
<li class="nav-item"><a data-toggle="tab" href="#educational" role="tab">Qualification</a></li>
</ul>
<div class="tab-content mb-50">
<div class="tab-pane fade show active" id="experience" role="tabpanel">
<p><?php echo $res_mng['description']; ?></p>
</div>
<div class="tab-pane fade" id="educational" role="tabpanel">
<p><?php echo $res_mng['qualification']; ?></p>
</div>
</div>
</div>
</div>
</section>
<?php
}
?>
<?php include('footer.php'); ?>
<?php
}
else
{
echo"<script>window.location='index.php';</script>";
}
?>