10 lines
192 B
PHP
10 lines
192 B
PHP
<?php
|
|
|
|
if ($this->is_id()) {
|
|
$delete_query = "DELETE FROM school_city WHERE scc_id = " . $this->get_id() . ";";
|
|
$sql->execute_query($delete_query);
|
|
header("Location: /admin/cities");
|
|
}
|
|
|
|
|
|
?>
|