15 lines
165 B
PHP
15 lines
165 B
PHP
<?php
|
|
|
|
require_once(__DIR__ . '/Database.php');
|
|
|
|
$id = $_POST['id'];
|
|
|
|
$db = new Database();
|
|
|
|
$db->deleteQuestion($id);
|
|
|
|
|
|
header("Location: questions-show.php");
|
|
|
|
?>
|