Files
PHPApp/older_app.php
2019-03-26 16:08:58 +01:00

9 lines
119 B
PHP

<?php
session_start();
$_SESSION = array();
session_unset();
session_destroy();
header("Location: old/index.php");
?>