5 lines
78 B
PHP
5 lines
78 B
PHP
<?php
|
|
// Redirect to the dashboard
|
|
header('Location: dashboard.php');
|
|
exit;
|
|
?>
|