����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 18.217.228.195 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['name'])) { $title=mysqli_real_escape_string($conn,htmlentities(str_replace('-',' ',$_GET['title']))); $artist=mysqli_real_escape_string($conn,htmlentities(str_replace('-',' ',$_GET['name']))); if(!empty($title) && !empty($artist)) { $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) { } if($mode!='free') { die("<h3><center>LINK HAS EXPIRED</center></h3>"); } } else { die(mysqli_error($conn)); } } else { die(mysqli_error($conn)); } } 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="w3.css"> <link rel="stylesheet" type="text/css" href="load.css"> <link rel="shortcut icon" href="Icons/malawisounds.ico"> <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="css/fontawesome/all.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/album_songs.php?title=<?php echo $titleurl?>&name=<?php echo $artisturl;?>" /> <meta property="og:type" content="website" /> <meta property="og:title" content="<?php echo strtoupper($title).' BY '.strtoupper($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="_blank"> <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///////////////////////////////////////////// //album-art image ?> <div class="contain_all"> <div class="contain1"> <img src="album_images/<?php echo $image;?>" alt="<?php echo $artist;?>"> </div> <div class="contain2"> <h2><?php echo strtoupper($title);?></h2> <h4><?php echo strtoupper($artist);?></h4> <h4><?php echo strtoupper($genre)?></h4> </div> <div class="clear"></div> </div> <?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(' ', '-', $row['music_title']); ?> <div class="contain" id="make_see<?php echo $id;?>"> <h5><?php echo $count .' '.$music_title;?></h5> <hr> <!-- content to show on click --> <center> <div id="see<?php echo $id;?>" class="w3-display-container w3-animate-zoom"> <h4><?php echo $music_title;?></h4> <table> <tr> <td>SIZE <div class="glyphicon glyphicon-floppy-disk"></div></td> <td><?php echo $size;?> mb</td> </tr> <tr> <td>DOWNLOADS <div class="glyphicon glyphicon-download-alt"></div></td> <td><?php echo $downloads;?></td> </tr> <tr> <td>STREAMED <div class="glyphicon glyphicon-headphones"></div></td> <td><?php echo $streamed;?></td> </tr> </table> <a href="download_album.php?id=<?php echo $id;?>"> <div class="glyphicon glyphicon-download-alt"></div> Download </a> <a href="<?php echo "aid-$id-$type-stream-$music_titleurl";?>" target="_blank"> <div class="glyphicon glyphicon-headphones"></div> Stream </a> <div class="w3-display-topright w3-red w3-padding">x</div> </div> </center> </div> <?php $count++; ?> <script type="text/javascript"> $(function(){ $('#make_see<?php echo $id;?>').on("click",function(){ $(".contain #see<?php echo $id;?>").toggle(); }); }) </script> <?php } } else { echo "<div class=\"danger\">No song was added on this $type</div>"; } ?> <!--Download Zip --> <center> <a href="album-zip.php?title=<?php echo $_GET['title'];?>&name=<?php echo $_GET['name'];?>" 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 --> <div class="footer"> <div class="details w3-center"> <a href="upload-music" target="_parent">UPLOAD</a> | <a href="contact-us" target="_parent">CONTACT US</a> | <a href="about-us" target="_parent">ABOUT US</a> </div> <h4 class="w3-center">© 2018- <?php echo date('Y',time());?></h4> </div> </div> </body> </html> <script type="text/javascript" src="js/nav.js"></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>