iComsium
/home/u575951074/domains/bookedgebookkeeping.com/public_html/admin/delete-download.php - Dosyasını Düzenle
<?php include("include/config.php"); include("include/checklog.php"); $sql2="select *from download where id='".base64_decode($_GET["id"])."' "; $result2=mysqli_query($conn,$sql2); $row2=mysqli_fetch_assoc($result2); $path=$row2["file_path"]; unlink($path); $sql="delete from download where id='".base64_decode($_GET["id"])."' "; mysqli_query($conn,$sql); header("location:show-download.php"); ?>
Geri Dön