itskp-odense/Backend/controller/logout.php

6 lines
96 B
PHP
Raw Normal View History

<?php
session_start();
session_unset();
session_destroy();
2021-06-08 13:07:04 +00:00
header("location: ../../index.php");