You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

44 lines
722 B

<?php
if (isset($_GET["page"])) {
$page = $_GET["page"];
}
else {
//výchozí hodnota bude "tistra"
$page = "tistra";
}
if ($page =="tistra") {
$title = "tistrA";
$content = "tistra.php";
}
elseif ($page =="galerie") {
$title = "Galerie";
$content = "gallery.php";
}
elseif ($page == "welcome") {
$title = "Welcome";
$content = "welcome.php";
}
elseif ($page =="bio") {
$title = "Bio";
$content = "bio.php";
}
elseif ($page =="kontakt") {
$title = "Kontaktní formulář";
$content = "kontakt.php";
}
else {
$title = "NENÍ DEFINOVÁNO";
$content = "error.php";
}
include "include/header.php";
include "include/$content";
include "include/footer.php";
?>