File "index.phtml"
Full path: /www/map/mapserver-extensions/pmapper-4.2.0/index.phtml
File size: 358 B
MIME-type: text/x-php
Charset: utf-8
<?php
if (isset($_REQUEST['config'])) {
$config = $_REQUEST['config'];
$startFile = "map_" . $config . ".phtml";
if (file_exists($startFile)) {
$startFile = "$startFile?config=$config";
} else {
$startFile = "map.phtml?config=$config";
}
} else {
$startFile = "map_default.phtml";
}
header("Location: $startFile");
?>