View sourcecode

The following files exists in this folder. Click to view.

logout.php

8 lines UTF-8 Unix (LF)
1
2
3
4
5
6
7
8
<?php
session_start
();            // Öppna sessionen
session_unset();            // Ta bort sessionens innehåll
session_destroy();        // Förstör sessionen

// Skicka vidare till index.php med meddelande
header('location: index.php?mess=Du har blivit utloggad.');