Initial commit from online.

This commit is contained in:
2023-12-28 12:13:55 +01:00
commit b65644f3e0
235 changed files with 4060 additions and 0 deletions

22
umgebung.php Normal file
View File

@@ -0,0 +1,22 @@
<h1><img src="img/umgebung/h1.gif" />Die Umgebung</h1>
<?php
if (!isset($_GET['t'])) {
include "inhalte/umgebung/standard.php";
}
else {
if ('gb' == $_GET['t']) {
include "inhalte/umgebung/gb.php";
}
elseif ('aktiv' == $_GET['t']) {
include "inhalte/umgebung/aktiv.php";
}
elseif ('links' == $_GET['t']) {
include "inhalte/umgebung/links.php";
}
else {
include "inhalte/umgebung/standard.php";
}
}
?>