|
Server IP : 185.187.241.233 / 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/../arjdwd/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
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</span></h2>
</div>
</div>
</section>
<section class="">
<div class="container">
<div class="event-details-content mb-50">
<div class="event-schedule-table table-responsive" style="margin-top:20px;">
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Event</th>
<th>Year</th>
<th>Place</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
$query_mng1 = mysqli_query($con,"select * from achievers where section='Achievers' order by id desc");
while($res_mng1 = mysqli_fetch_array($query_mng1))
{
?>
<tr>
<td><?php echo $res_mng1['name']; ?></td>
<td><?php echo $res_mng1['event']; ?></td>
<td><?php echo $res_mng1['year']; ?></td>
<td><?php echo $res_mng1['place']; ?></td>
<td>
<a href="view-achievement.php?id=<?php echo $res_mng1['id']; ?>">View Details</a>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
</section>
<?php include('footer.php'); ?>