1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21: | <?php
if(!empty($_GET))
{
switch($_GET['seite'])
{
case "start": include("start.php"); break;
case "leitbild": include("leitbild.php"); break;
case "kontakt": include("kontakt.php"); break;
case "service": include("service.php"); break;
case "referenzen": include("referenzen.php"); break;
case "wunschbad": include("wunschbad.php"); break;
case "rundgang": include("rundgang.php"); break;
}
}
else
{
include("start.php");
}
?> |