Files
woordjes/index.php
T
2026-06-15 09:37:37 +02:00

10 lines
158 B
PHP

<?php
require_once 'includes/config.php';
if (isset($_SESSION['user'])) {
header('Location: dashboard.php');
exit;
}
header('Location: login.php');