����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 3.147.73.117 Web Server : LiteSpeed System : Linux premium276.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : kwacuqig ( 988) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/kwacuqig/redlighttunes.com/ |
Upload File : |
<?php include './php/connect.php'; include './header.php'; include './sidebar.php'; ?> <!-- main content --> <main class="main"> <div class="container-fluid"> <!-- artists --> <div class="row row--grid"> <!-- breadcrumb --> <div class="col-12"> <ul class="breadcrumb"> <li class="breadcrumb__item"><a href="home">Home</a></li> <li class="breadcrumb__item breadcrumb__item--active">Videos</li> </ul> </div> <!-- end breadcrumb --> </div> <div class="row row--grid"> <?php $query = "SELECT * FROM `videos` ORDER BY `id` DESC"; $run = mysqli_query($conn, $query) or die(mysqli_error($conn)); $count = mysqli_num_rows($run); while ($row = mysqli_fetch_array($run)) { ?> <div class="col-12 col-sm-6 col-md-4 wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.7s"> <div class="live"> <a href="<?php echo $row['youtube'];?>" class="live__cover open-video"> <img src="./youtube/<?php echo $row['thumbnail']; ?>" alt=""> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M18.54,9,8.88,3.46a3.42,3.42,0,0,0-5.13,3V17.58A3.42,3.42,0,0,0,7.17,21a3.43,3.43,0,0,0,1.71-.46L18.54,15a3.42,3.42,0,0,0,0-5.92Zm-1,4.19L7.88,18.81a1.44,1.44,0,0,1-1.42,0,1.42,1.42,0,0,1-.71-1.23V6.42a1.42,1.42,0,0,1,.71-1.23A1.51,1.51,0,0,1,7.17,5a1.54,1.54,0,0,1,.71.19l9.66,5.58a1.42,1.42,0,0,1,0,2.46Z"></path> </svg> </a> <h3 class="live__title"><a href="<?php echo $row['youtube'];?>" class="open-video"><?php echo $row['title']; ?></a></h3> </div> </div> <?php } ?> </div> </div> <!-- end music videos --> </main> <!-- end main content --> <?php include './footer.php'; ?> <script> document.querySelector("title").innerText = "Redlighttunes - Videos"; document.querySelectorAll("ul.sidebar__nav .sidebar__nav-item a")[3].classList.add("sidebar__nav-link--active"); </script> <?php include './scripts.php'; ?>