Server IP : 103.53.40.154 / Your IP : 18.218.73.233 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/agarsarbharat.com/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include "admin/config.php";?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Video-Gallery</title> <?php include "top-links.php";?> </head> <style> .bg-shadow{margin: 10px; padding: 30px; box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); border-radius: 6px; max-width: 800px; } .frm-sub-btn{ width: 100%; } #photo-gallery img { transition: transform 0.3s ease-in-out; } </style> <body> <?php include "header.php";?> <section class="inner-header divider layer-overlay overlay-dark-6" data-bg-img="img/breadcrumbs.jpg" style="background-image: url('img/breadcrumbs.jpg'); background-position: center; background-size: cover;"> <div class="container pt-120 pb-60"> <div class="section-content"> <div class="row"> <div class="col-md-6 p-4"> <h2 class="text-theme-colored2 font-36">Video Gallery</h2> <ol class="breadcrumb text-left mt-10 white"> <li><a href="">Home </a></li> <span> | </span> <li><a href="">Gallery </a></li> <span> | </span> <li class="active"><a href="contact-us.html"> Video Gallery</a></li> </ol> </div> </div> </div> </div> </section> <?php include "home-marquee.php";?> <section id="photo-gallery"> <div class="container"> <div class="row py-4"> <?php $sqlvideo = "SELECT * FROM `tbl_video`"; $runvideo = mysqli_query($db,$sqlvideo) or die("Query Not run"); while($datavideo = mysqli_fetch_assoc($runvideo)){ if(mysqli_num_rows($runvideo) > 0){ ?> <div class="col-lg-6 py-2"> <iframe src="<?php echo $datavideo['video_link'] ?>" width="100%" height="300px" frameborder="0"></iframe> <h3><?php echo $datavideo['title'] ?></h3> </div> <?php } } ?> </div> </div> </section> <!--footer --> <?php include "footer.php";?> </body> </html>