Files
willes_AI/logout.php

6 lines
97 B
PHP
Raw Permalink Normal View History

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