Files
Globaly-CSS-Practice/php/logout.php
2024-06-14 16:58:36 +02:00

8 lines
98 B
PHP

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