| Server IP : 103.48.194.25 / Your IP : 216.73.216.74 Web Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.33 System : Linux VMHostDefault 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64 User : sieuthimay ( 1016) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/hocthongminh.net-bk/public_html/site/components/khuyenmai/views/ |
Upload File : |
<?php
function get_hot_news()
{
$ci =& get_instance();
$ci->db->where('bl_active',1);
//$ci->db->where('is_hot',0);
$ci->db->order_by('nb_order','desc');
$query = $ci->db->get('news',15,0);
return $query->result();
}
$list_news = get_hot_news();
?>
<div class="grid__item large--three-twelfths medium--one-whole small--one-whole pd-left10">
<section id="related-product-articles">
<div class="home-section-head clearfix">
<div class="section-title">
<h2> Tin tức liên quan </h2>
</div>
</div>
<div class="home-section-body">
<div class="grid-uniform mg-left-10">
<? foreach ($list_news as $news) :
$link_detail = site.'tin-chi-tiet/'.alias($news->lb_title).'-'.$news->news_id.'.html';
$link_img = urlimg.'news/'.$news->lb_image;
?>
<div class="grid__item pd-left10 large--one-whole medium--one-half small--one-whole">
<div class="rparticle-item">
<div class="grid mg-left-5">
<div class="grid__item pd-left5 large--four-tenths medium--four-tenths small--four-tenths">
<div class="rparticle-img"> <a href="<?=$link_detail?>" title="<?=$news->lb_title?>"> <img src="<?=$link_img?>" alt="<?=$news->lb_title?>"> </a> </div>
</div>
<div class="grid__item pd-left5 large--six-tenths medium--six-tenths small--six-tenths">
<div class="rparticle-title"> <a href="<?=$link_detail?>" title="<?=$news->lb_title?>"><?=$news->lb_title?></a> </div>
</div>
</div>
</div>
</div>
<? endforeach ;?>
</div>
</div>
</section>
</div>