29 lines
738 B
PHP
29 lines
738 B
PHP
|
|
||
|
<?php
|
||
|
$thisPage="privat";
|
||
|
$thistitel = " - Familie";
|
||
|
$_SESSION['thema'] = "familie";
|
||
|
?>
|
||
|
|
||
|
<?php
|
||
|
$thema = $_SESSION['thema']; //"familie;
|
||
|
// $unter_thema = array("portrait", "gruppe", "ella");
|
||
|
$titel = array("", "Harald", "Vater", "2015 - 92.Geburtstag", "Ella", "", "", "", "", "",
|
||
|
"", "", "", "", "", "", "", "", "", "");
|
||
|
?>
|
||
|
|
||
|
<?php
|
||
|
if (isset($_GET['carussel'])) {
|
||
|
$_SESSION['carussel'] = $_GET['carussel'];}
|
||
|
|
||
|
if (!isset($_SESSION['carussel'])){
|
||
|
$_SESSION['carussel'] = "00";}
|
||
|
|
||
|
if ($_SESSION['carussel'] == "01") { // carussel?
|
||
|
include __DIR__ . "/../inc/foto_carussel.inc.php";
|
||
|
} else {
|
||
|
$_SESSION['carussel'] = "00";
|
||
|
include __DIR__ . "/../inc/foto_portfolio.inc.php";
|
||
|
}
|
||
|
?>
|