mirror of
https://github.com/arthur-pbty/nsi.git
synced 2026-06-03 23:36:19 +02:00
8 lines
127 B
PHP
8 lines
127 B
PHP
<?php
|
|
$callback = $_POST['callback'];
|
|
|
|
setcookie("$callback", '', time() - 3600, '/');
|
|
|
|
header("Location: index.php");
|
|
exit;
|
|
?>
|