6 lines
141 B
PHP
6 lines
141 B
PHP
<?php
|
|
if (isset($_SESSION['user']))
|
|
header('Location: spaces.php?view=list');
|
|
else
|
|
header('Location: spaces.php?view=show&id=2025');
|