38960-vm/delete_test_appointment_cleanup.php
2026-03-17 09:31:25 +00:00

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";