This commit is contained in:
Ricsi
2016-12-15 23:27:55 +01:00
parent 08627484da
commit d458b996a4
46 changed files with 1138 additions and 386 deletions

View File

@@ -0,0 +1,10 @@
<?php
if ($this->is_id()) {
$delete_query = "DELETE FROM region WHERE reg_id = " . $this->get_id() . ";";
$sql->execute_query($delete_query);
header("Location: /admin/regions");
}
?>