itskp-odense/Backend/controller/logout.php

6 lines
96 B
PHP
Raw Permalink Normal View History

<?php
session_start();
session_unset();
session_destroy();
header("location: ../../index.php");