13 lines
232 B
PHP
13 lines
232 B
PHP
<?php
|
|
require_once __DIR__ . '/db/config.php';
|
|
require_once __DIR__ . '/helpers.php';
|
|
|
|
$db = db();
|
|
$id = 15;
|
|
|
|
$stmt = $db->prepare("DELETE FROM appointments WHERE id = ?");
|
|
$stmt->execute([$id]);
|
|
|
|
echo "Deleted appointment $id\n";
|
|
|