Jacek Kowalski
2019-09-19 51eea1c5e113e25683109b3544d847ee0668d921
1
2
3
4
5
6
7
8
9
<?php
if(is_file('list.xml')) {
    header('Location: locate.htm');
}
else
{
    header('Location: begin.php');
}
?>