36735-vm/logout.php
Flatlogic Bot d076708932 feat: Implement new design and features for the main page
- Redesigned the main page with a modern look and feel.
- Added search and filtering functionality for drills.
- Implemented pagination for browsing drills.
- Added the ability for users to mark drills as favorites.
2025-12-07 18:15:23 +00:00

7 lines
98 B
PHP

<?php
session_start();
session_unset();
session_destroy();
header('Location: index.php');
exit();