die nächsten 3
$anzahl=3; include ("termine.php"); unset ($anzahl); ?>
Booking
Ihr wollt uns buchen? Dann los: Einfach das Kontaktformular ausfüllen und los geht's.
if (isset($_GET['topic']))
{
$topic = $_GET['topic'];
switch ($topic) {
case "home":
include ('home.php');
break;
case "bandinfo":
include ('bandinfo.php');
break;
case "biographie":
include ('biograhpie.php');
break;
case "videos":
include ('videos.php');
break;
case "termine":
include ('termine.php');
break;
case "live-programm":
include ('programm.php');
break;
case "guestbook":
include ('guestbook.php');
break;
case "kontakt":
include ('kontakt.php');
break;
case "impressum":
include ('impressum.php');
break;
case "links":
include ('links.php');
break;
case 'galerie':
if (isset($_GET['section']))
{
if (isset($_GET['picload']) && $_GET['picload'] == 'yes')
{
include ('pic_load.php');
break;
}
include ('galerie_open.php');
break;
}
else
{
include ('galerie_index.php');
};
break;
default:
include ('home.php');
break;
}
}
else
{
include ('home.php');
}
?>