keyload/remove.php
2023-09-30 01:28:36 +02:00

14 lines
247 B
PHP

<?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
?>