Server IP : 103.53.40.154 / Your IP : 3.144.42.174 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/semipreciousslab.com/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php $sql_testimonial=db_query("select * from tbl_testimonial where 1 and test_status='Active' order by test_id desc"); if(mysqli_num_rows($sql_testimonial)>0){ ?> <section id="testimonials" class="padd-100 parallax-window" data-background="assets/img/demo/bg/03.jpg"> <span class="section-suptitle text-center"> MKB Food </span> <h2 class="section-title white-font sep-type-2 text-center"> customer feedback </h2> <div class="container"> <div class="row"> <div class="col-sm-12 no-padd"> <ul class="testimonial-list"> <?php while($TEST_DATA=mysqli_fetch_array($sql_testimonial)){ @extract($TEST_DATA); ?> <li> <div class="text-center"> <?=strip_tags($TEST_DATA['test_description'])?> <span><?=$TEST_DATA['test_given_by']?></span> </div> <?php if($TEST_DATA['test_image_name']!=""){?> <img src="<?=$site_url?>/test_images/<?=$TEST_DATA['test_image_name']?>" title="<?=$TEST_DATA['test_comp_name']?>" alt="<?=$TEST_DATA['test_comp_name']?>" class="img-responsive" > <?php }?> </li> <?php } ?> </ul> </div> </div> </div> </section> <?php } ?>