enhancement addition

This commit is contained in:
Tutur33
2023-12-01 16:40:40 +01:00
parent 0416825f1d
commit b940162257
4 changed files with 92 additions and 14 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
$callback = $_POST['callback'];
setcookie("$callback", '', time() - 3600, '/');
header("Location: index.php");
exit;
?>