����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 18.188.188.152 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 './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 breadcrumb__item--active">Albums</li> </ul> </div> <!-- end breadcrumb --> </div> <!-- releases --> <div class="row row--grid"> <div class="col-12"> <div class="row row--grid"> <?php include './php/connect.php'; $query = "SELECT * FROM `albums` 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)) { $id=$row['id']; $artist_url=str_replace(' ','-',strtolower($row['artist'])); $title_url=str_replace(' ','-',strtolower($row['title'])); ?> <div class="col-6 col-sm-4 col-lg-2 wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.7s"> <div class="album"> <div class="album__cover"> <img src="./albums/covers/<?php echo $row['image']; ?>" alt="<?php echo $row['title']; ?>"> <a href="<?php echo $row['type']."~$id-$title_url-by-$artist_url"; ?>"><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></a> <span class="album__stat"> <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 $row['zip_downloads'];?></span> </span> </div> <div class="album__title"> <h3><a href="<?php echo $row['type']."~$id-$title_url-by-$artist_url"; ?>"><?php echo $row['title']; ?></a></h3> <span><a href="#"><?php echo $row['artist']; ?></a></span> </div> </div> </div> <?php } ?> </div> </main> <!-- end main content --> <?php include './footer.php'; ?> <script> document.querySelector("title").innerText = "Redlighttunes - Artists"; document.querySelectorAll("ul.sidebar__nav .sidebar__nav-item a")[2].classList.add("sidebar__nav-link--active"); </script> <?php include './scripts.php'; ?>