www/api/logout.php
2026-05-11 23:31:48 +01:00

5 lines
78 B
PHP

<?php
session_start();
session_destroy();
header("Location: login.php");
exit;