OebbApiWeb/logout.php

9 lines
186 B
PHP
Raw Normal View History

2025-07-05 18:57:47 +02:00
<?php
// Start the session
session_start();
// Destroy the active session, which logs the user out
session_destroy();
// Redirect to the login pag
header('Location: index.php');
exit;
?>