Code formatting.

This commit is contained in:
2023-12-28 13:31:44 +01:00
parent b65644f3e0
commit b70cedac3b
84 changed files with 3357 additions and 3280 deletions

View File

@@ -1,22 +1,18 @@
<h1>Fotos</h1>
<?php
if (!isset($_GET['t'])) {
include "inhalte/fotos/standard.php";
}
else {
if (('will' == $_GET['t']) OR ('haus' == $_GET['t']) OR ('lage' == $_GET['t']) OR ('geschichte' == $_GET['t']) OR ('gaby' == $_GET['t']) OR ('amelie' == $_GET['t'])){
include "inhalte/fotos/10er.php";
}
elseif ('wohn' == $_GET['t']) {
include "inhalte/fotos/wohn.php";
}
elseif ('bilder' == $_GET['t']) {
include "inhalte/fotos/bilder.php";
}
else {
include "inhalte/fotos/standard.php";
}
}
if (!isset($_GET['t'])) {
include "inhalte/fotos/standard.php";
} else {
if (('will' == $_GET['t']) or ('haus' == $_GET['t']) or ('lage' == $_GET['t']) or ('geschichte' == $_GET['t']) or ('gaby' == $_GET['t']) or ('amelie' == $_GET['t'])) {
include "inhalte/fotos/10er.php";
} elseif ('wohn' == $_GET['t']) {
include "inhalte/fotos/wohn.php";
} elseif ('bilder' == $_GET['t']) {
include "inhalte/fotos/bilder.php";
} else {
include "inhalte/fotos/standard.php";
}
}
?>