PHP Classes

File: uploady/logic/deleteLogic.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Uploady PHP Upload File to MySQL   uploady/logic/deleteLogic.php   Download  
File: uploady/logic/deleteLogic.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Uploady PHP Upload File to MySQL
Store file upload details in a MySQL database
Author: By
Last change: Fixea
Date: 3 months ago
Size: 884 bytes
 

Contents

Class file image Download
<?php

$handler
= new Uploady\Handler\UploadHandler($db);

if (isset(
$_GET['file_id']) && isset($_GET['user_id'])) {

   
$fileID = $utils->sanitize($_POST['file_id']);
   
$userID = $utils->sanitize($_POST['user_id']);

    if (
$handler->fileExist($fileID) && $handler->userExist($userID) && $_SESSION['user_id'] == $userID) {
       
$file = json_decode($handler->getFile($fileID)->file_data);
        if (
$handler->deleteFile($fileID, $userID)) {
           
unlink(realpath("uploads/{$userID}/{$file->filename}"));
           
$msg = $lang["general"]['file_deleted_success'];
        } else {
           
$msg = $lang["general"]['file_deleted_failed'] . " ):";
        }
    } else {
       
$msg = $lang["general"]["file_or_user_not_found"];
    }
} else {
   
$msg = $lang["general"]['file_id_missing'];
}

$title = $lang["general"]['delete_file_title'];
$page = 'delete_file';