moved things

This commit is contained in:
2024-10-23 21:45:15 +02:00
parent 3fc8d2fd74
commit aeca2e31df
21 changed files with 186 additions and 131 deletions

View File

@@ -0,0 +1,8 @@
<?php
require_once('../src/User.php');
if (isset($_GET['id']) && !empty($_GET['id'])) {
$id = strip_tags($_GET['id']);
DeleteUser($id);
header('Location: index.php');
}