Files
willes_AI/logout.php

6 lines
95 B
PHP
Raw Permalink Normal View History

2025-07-17 01:05:46 +02:00
<?php
session_start();
session_unset();
session_destroy();
header('Location: login.php');
exit;