30 lines
775 B
PHP
Executable File
30 lines
775 B
PHP
Executable File
|
|
<?php
|
|
$thisPage="portfolio";
|
|
$thistitel = " - Bonsai";
|
|
$_SESSION['thema'] = "bonsai";
|
|
?>
|
|
|
|
<?php
|
|
$thema = $_SESSION['thema']; // Bonsai
|
|
// $unter_thema = array("bonsai");
|
|
$titel = array("", "Apfelbaum mit Früchten", "Bosaigarten", "Apfelbaum blüht",
|
|
"Blütenpracht", "Buche", "Äpfel sind reif",
|
|
"Apfelbaum", "Winterzeit", "" );
|
|
?>
|
|
|
|
<?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";
|
|
}
|
|
?>
|