Mini Shell
<?php
session_start();
require_once 'include/auth_validate.php';
require_once 'config/config.php';
$del_id = filter_input(INPUT_POST, 'del_id');
$db = getDbInstance();
if($_SESSION['admin_type']!='super'){
header('HTTP/1.1 401 Unauthorized', true, 401);
exit("401 Unauthorized");
}
// Delete a user using user_id
if ($del_id && $_SERVER['REQUEST_METHOD'] == 'POST') {
$db->where('AppUploadID', $del_id);
$stat = $db->delete('applicationuploads');
if ($stat) {
$_SESSION['info'] = "Record deleted successfully!";
header('location: ManageAppUploads.php');
exit;
}
}