Mini Shell

Direktori : /home/mhcadmin/eya/
Upload File :
Current File : /home/mhcadmin/eya/DeletePlotApp.php

<?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('PAID', $del_id);
    $stat = $db->delete('plotapplication');
    if ($stat) {
        $_SESSION['info'] = "Record deleted successfully!";
        header('location: ManagePlotApp.php');
        exit;
    }
}