mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-06 07:19:08 +00:00
10 lines
250 B
PHP
10 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();
|
|
}
|