Server IP : 103.53.40.154 / Your IP : 18.118.0.48 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 $test_sql_final=db_query("select * from tbl_testimonial where 1 and test_status='Active' order by test_order_by asc"); if(mysqli_num_rows($test_sql_final)>0) { ?> <!--Start testimonial area--> <section class="testimonial-area"> <div class="container"> <div class="sec-title text-center"> <h2>Customers Feedback</h2> <span class="border"></span> </div> <div class="row"> <div class="col-md-12"> <div class="testimonials-carousel"> <?php $i=0; while($test_res=mysqli_fetch_array($test_sql_final)) { $i++; ?> <!--Start single slide item--> <div class="single-slide-item"> <div class="img-box"> <img src="<?=$site_url?>/images/testimonial/<?=$test_res['test_image_name']?>" alt="Awesome Image"> </div> <div class="text-box"> <span class="flaticon-right"></span> <div class="text"> <p><?=$test_res['test_description']?></p> <h3><?=$test_res['test_given_by']?></h3> <h4>(<?=$test_res['test_comp_name']?>)</h4> </div> </div> </div> <!--End single slide item--> <?}?> </div> </div> </div> </div> </section> <!--End testimonial area--> <?}?>