UrlManipulator-php/server/reset_session.php

11 lines
138 B
PHP
Raw Normal View History

<?php
// Start the session
session_start();
// Unset all session variables
$_SESSION = [];
// Destroy the session
session_destroy();
?>