database update

This commit is contained in:
2021-03-25 14:24:34 +01:00
parent 9e4c39c435
commit 676b3a596d
5 changed files with 114 additions and 9 deletions
+3 -1
View File
@@ -1,9 +1,10 @@
<?php
session_start();
session_unset();
session_destroy();
$cookieCon = array(
'expires' => -1,
'samesite' => 'Strict',
@@ -11,5 +12,6 @@ $cookieCon = array(
);
setcookie("groupName", null, $cookieCon);
setcookie("groupId", null, $cookieCon);
setcookie("userName", null, $cookieCon);
echo http_response_code(200);