|
Server IP : 86.38.243.193 / Your IP : 216.73.217.143 Web Server : LiteSpeed System : Linux in-mum-web1336.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64 User : u493057690 ( 493057690) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : ON Directory (0755) : /home/u493057690/domains/iasfindia.com/public_html/admin/../ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<div class="card mb-lg-0">
<div class="card-header">
<h3 class="card-title font-weight-bold">Latest Updates</h3>
</div>
<div class="card-body p-0">
<ul class="list-unstyled widget-spec tour-scroll vertical-scroll mb-0">
<?php
require_once 'admin/connect.php';
$query = $conn->query("SELECT * FROM `latest_updates` where status='Active'") or die(mysql_error());
while($fetch = $query->fetch_array()){
?>
<li>
<div class="d-sm-flex w-100">
<div><img src="admin/<?php echo $fetch['photo']?>" alt="img" class="br-5" style="width:100%;"></div>
<div class="clearfix"></div>
<div class="ml-sm-5 mt-sm-1 mt-3 mr-5 mb-4 mb-sm-0">
<a href="#"><h5 class="mb-1 font-weight-bold"><?php echo $fetch['head']?></h5></a>
<small style="font-weight:bold"><i class="fe fe-calendar mr-1"></i><b>Tournament Date :</b> <?php echo $fetch['tournament_date']?></small>
<br/>
<small><i class="fe fe-map-pin mr-1"></i><b>Venue :</b> <?php echo $fetch['place']?></small>
<br/>
<small class=""><i class="fe fe-clock mr-1"></i><b>Registration Last Date : </b><?php echo $fetch['reg_date']?></small>
</div>
</div>
</li>
<?php
}
?>
</ul>
</div>
</div>