2024-02-19 10:15:09 +01:00
|
|
|
<?php
|
2024-02-20 16:59:46 +01:00
|
|
|
session_start();
|
2024-02-19 10:15:09 +01:00
|
|
|
require("config.php");
|
2024-02-20 16:59:46 +01:00
|
|
|
|
2024-02-19 10:15:09 +01:00
|
|
|
$directory = $_SERVER['REQUEST_URI'];
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="de">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta name="author" content="Walter Hupfeld, info@hupfeld-software.de">
|
|
|
|
<meta name="description" content="Georeferenzieter Ideenmelder">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="css/bootstrap.min.css" />
|
|
|
|
<link rel="stylesheet" href="css/style.css" />
|
2024-02-21 11:35:21 +01:00
|
|
|
|
2024-02-19 10:15:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
<title><?=$strTitle?></title>
|
|
|
|
<script src="js/jquery.min.js"></script>
|
|
|
|
<style>
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2024-02-20 16:06:57 +01:00
|
|
|
|
2024-02-19 10:15:09 +01:00
|
|
|
<div class="container">
|
2024-02-20 16:06:57 +01:00
|
|
|
<h1><?=$strTitle?></h1>
|
|
|
|
<div class="jumbotron">
|
|
|
|
<img src="<?=$strLogo?>" />
|
|
|
|
<?=$strIntroText?>
|
|
|
|
</div>
|
2024-02-19 10:15:09 +01:00
|
|
|
<div>
|
|
|
|
<form method="GET" action="index.php">
|
|
|
|
<select name="d" style="float:left;margin-top:0.5em;margin-right:0.5em;" onchange="this.form.submit()">
|
|
|
|
<?php foreach ($arrDistrict as $key => $strTitle): ?>
|
|
|
|
<option value="<?=$key?>"><?=$strTitle?></option>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</select>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<p style="clear:both";>
|
|
|
|
<h3>Kreise und kreisfreie Städte</h3>
|
|
|
|
<div>
|
|
|
|
<?php
|
|
|
|
foreach ($arrDistrict as $key => $strTitle):?>
|
|
|
|
<a href="<?php echo "./".$key ?>"><?=$strTitle?></a><br>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|