Files
nsi/Activity_PHP/calendar/del_rappel.php
T
2023-12-01 16:40:40 +01:00

8 lines
127 B
PHP

<?php
$callback = $_POST['callback'];
setcookie("$callback", '', time() - 3600, '/');
header("Location: index.php");
exit;
?>