itskp-odense/Backend/controller/logout.php

6 lines
105 B
PHP
Raw Normal View History

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