itskp-odense/Backend/controller/logout.php

6 lines
105 B
PHP
Raw Normal View History

<?php
session_start();
session_unset();
session_destroy();
2021-06-09 06:50:45 +00:00
header("location: ../../Frontend/index.php");