Files
Globaly-CSS-Practice/php/logout.php
2024-06-24 07:52:54 +02:00

8 lines
98 B
PHP
Executable File

<?php
require_once 'core.inc.php';
session_destroy();
header('Location: '. '../index.php');
?>