WebbServerProg/www/public/Moment-3/loggOut.php

8 lines
153 B
PHP
Raw Permalink Normal View History

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