first commit

This commit is contained in:
2026-06-11 21:18:48 +07:00
parent 14ef9997c2
commit 2747d616c7
45 changed files with 7381 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
// php/logout.php
if (session_status() === PHP_SESSION_NONE) { session_start(); }
session_destroy();
header('Content-Type: application/json');
echo json_encode(['success' => true]);
?>