Files
homepage/gaby.php
2023-12-28 12:13:55 +01:00

19 lines
360 B
PHP

<h1><img src="img/gaby/FW Ga Sterne.png" />Wohnung Gaby</h1>
<?php
if (!isset($_GET['t'])) {
include "inhalte/gaby/standard.php";
}
else {
if ('preise' == $_GET['t']) {
include "inhalte/gaby/preise.php";
}
elseif ('anfrage' == $_GET['t']) {
include "inhalte/gaby/anfrage.php";
}
else {
include "inhalte/gaby/standard.php";
}
}
?>