mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2025-01-01 04:16:00 +00:00
15 lines
261 B
PHP
15 lines
261 B
PHP
|
<?php
|
||
|
// Initialize the session
|
||
|
session_start();
|
||
|
|
||
|
// Unset all of the session variables
|
||
|
$_SESSION = array();
|
||
|
|
||
|
// Destroy the session.
|
||
|
session_destroy();
|
||
|
|
||
|
// Redirect to login page
|
||
|
header("location: https://superdupersecteteuploadtest.fluffybean.gay");
|
||
|
exit;
|
||
|
?>
|