8 lines
149 B
PHP
Raw Normal View History

2024-09-13 16:45:04 +02:00
<?php
session_start();
$_SESSION = array(); // Tömmer sessionsarrayen
session_destroy();
header("Location: index.php");
?>