feat: initial commit

This commit is contained in:
2026-06-10 16:50:45 +07:00
commit 7d7739d0af
77 changed files with 11620 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]);
?>