Navigation mit tpl

Tarzipan

Grünschnabel
Hallo,
ich hab ein kleines Problem.
Unzwar benutze ich dieses System hier -> http://www.media-palette.de/tools/pb-tpl/index.html
Jetzt habe ich mir gedacht das ich den Switch befehl nutze um die Navitagion zu machen, jedoch klappt das irgdenwie nicht.

PHP:
<?php
require_once("pb-tpl.php");
$t = new pb_tpl("templates/index.tpl");
require("lang_d.php");

switch ($action)
	 		{
			case "impressum" : include("impressum.php"); break;
    		default : include("home.php"); break;
    		};

$sere = array (
	"inhalt" =>	?,
	"copyrights" => $copyrights_t,
	"title" => $title_t
	);

echo $t->fill_tpl("index", $sere);
?>
das ist die index.php

Weis jemand ob man das damit überhaupt mit Switch funktioniert oder gibt es noch eine andere möglichkeit wie man die navigation machen kann?


mfg Tarzipan
 
ich habs grad herausgefunden :=)

mit 2 tpl's funktionierts ganz leicht

PHP:
<?php
require_once("pb-tpl.php");
$t = new pb_tpl("templates/header.tpl");

require("lang_d.php");



$sere = array (
	"title" => $title_t
	);

echo $t->fill_tpl("header", $sere);

$t2 = new pb_tpl("templates/footer.tpl");

switch ($action)
	 	{
		case "impressum" : include("impressum.php") ; break;
    	default : include("home.php"); break;
    	};
    	
$sere2 = array (
	"copyrights" => $copyrights_t,
	"title" => $title_t
	);
	
echo $t2->fill_tpl("footer", $sere2);
?>
 
Zurück