35249-vm/logout.php
Flatlogic Bot 3db54a0124 3.0
2025-10-26 12:42:58 +00:00

10 lines
224 B
PHP

<?php
declare(strict_types=1);
ini_set('display_errors', '1');
error_reporting(E_ALL);
// In a real app, you would have logout logic here.
// For now, we just redirect to the main page.
header('Location: index.php');
exit;