| Linux server27.hostingraja.org 2.6.32-954.3.5.lve1.4.93.el6.x86_64 #1 SMP Wed Oct 4 17:04:29 UTC 2023 x86_64 Path : /home/udaipurk/public_html/websites/samaj/samaj/ |
| Current File : //home/udaipurk/public_html/websites/samaj/samaj/event_rotator.php |
<?php include('header.php'); ?>
<br>
<section id="ccr-world-news">
<div class="ccr-gallery-ttile">
<span></span>
<p>Latest Articles</p>
</div> <!-- .ccr-gallery-ttile -->
<marquee direction="up">
<?php
$articles=mysqli_query($link,"select * from article order by a_id desc LIMIT 5");
while($article=mysqli_fetch_array($articles))
{
$aid=$article['a_id'];
?>
<section class="featured-world-news">
<div class="featured-world-news-img">
<a href="<?php echo "article.php?aid=$aid"; ?>">
<img src="admin/<?php echo $article['photo']; ?>" alt="Thumb">
</a>
</div>
<div class="featured-world-news-post">
<a href="<?php echo "article.php?aid=$aid"; ?>">
<h5><?php echo $article['title']; ?></h5>
</a>
<?php echo $article['short_des']; ?>
<div class="like-comment-readmore">
<b>Date : <?php echo $article['rdate']; ?></b>
<!-- <a class="read-more" href="<?php //echo "article.php?aid=$aid"; ?>">Read More</a>-->
</div> <!-- /.like-comment-readmore -->
</div>
</section>
<?php } ?></marquee>
</section> <!-- / #ccr-world-news -->
<?php include('footer.php'); ?>