File "redirection.php"
Full Path: /home/analogde/www/Prog/File explorer/redirection.php
File size: 225 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
session_start();
// Unset all session variables
$_SESSION = [];
// Destroy the session
session_destroy();
// redirection
header('Location: arbo_test08.php');
exit();
?>