mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-11 01:40:13 +00:00
11 lines
250 B
PHP
11 lines
250 B
PHP
|
<?php
|
||
|
/**
|
||
|
* This function is beign used to load info that's needed for the logout page.
|
||
|
* it will just unset & destroy the session
|
||
|
* @author Daan Janssens, mentored by Matthew Lagoe
|
||
|
*/
|
||
|
function logout(){
|
||
|
session_unset();
|
||
|
session_destroy();
|
||
|
}
|