repo.or.cz
/
FlightAirMap.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #456 from Struart88/patch-2
[FlightAirMap.git]
/
accident.php
blob
e24c06d66e382af4f3cf112945f8579b208e6ddf
1
<
?php
2
require_once
(
dirname
(
__FILE__
).
'/require/settings.php'
);
3
$date
=
filter_input
(
INPUT_POST
,
'date'
,
FILTER_SANITIZE_STRING
);
4
if
(
$date
==
''
)
$date
=
date
(
'Y-m-d'
);
5
header
(
'Location: '
.
$globalURL
.
'/accident/'
.
$date
);
6
?
>