mirror of
https://hub.gitmirror.com/https://github.com/ExamAware/ExamCloudSchedule
synced 2025-04-29 08:06:33 +00:00
17 lines
254 B
PHP
17 lines
254 B
PHP
<?php
|
|
require_once '../includes/auth.php';
|
|
checkLogin();
|
|
|
|
$id = $_GET['id'] ?? '';
|
|
|
|
if (!empty($id)) {
|
|
$filePath = "../configs/{$id}.json";
|
|
if (file_exists($filePath)) {
|
|
unlink($filePath);
|
|
}
|
|
}
|
|
|
|
header('Location: index.php');
|
|
exit;
|
|
?>
|