Server IP : 103.53.40.154 / Your IP : 3.135.247.17 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/ppcad7no/homeinteriordecorators.in/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php $brand_sql=db_query("select * from tbl_clients order by image_id asc"); if(mysqli_num_rows($brand_sql)>0) { ?> <!--Start Brand area--> <section class="brand-area"> <center style="color:white; padding-bottom:20px;"><h2>Our Clients</h2></center> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="brand"> <?php while($brand_res=mysqli_fetch_array($brand_sql)) { ?> <!--Start single item--> <div class="single-item"> <a><img src="<?=$site_url?>/our_client/<?=$brand_res['image_name']?>" alt="<?=$compDATA['admin_company_name']?> Client Logo"></a> </div> <!--End single item--> <?}?> </div> </div> </div> </div> </section> <!--End Brand area--> <?}?>