keyload/remove.php

14 lines
247 B
PHP
Raw Normal View History

2023-09-30 01:28:36 +02:00
<?php
include "config.php";
include "create-table.php";
if (isset($_REQUEST['key'])) {
$Key = $_REQUEST['key'];
} else {
print "No key specified.";
die();
}
// TODO: Functions that remove stuff
?>