Ouwe rakker |
|
Dit zul je zelf moeten schrijven shib. Je kan hierbij gebruik maken van de INCLUDE blocks.
Je hebt dus een main.tpl bijvoorbeeld met een INCLUDE BLOCK erin. Deze kan je variabel insturen.
Voorbeeld:
main.tpl
<html>
<head>
<title>AssignInclude Example</title>
</head>
<body>
<!-- INCLUDE BLOCK : content -->
</body>
</html>
<html> <head> <title>AssignInclude Example</title> </head> <body> <!-- INCLUDE BLOCK : content --> </body> </html>
index.php
<?php
include_once( "./class.TemplatePower.inc.php" );
$tpl = new TemplatePower( "./main.tpl" );
$tpl->assignInclude( "content", $_GET['p'].".tpl" );
$tpl->prepare();
$tpl->printToScreen();
?>
<?php include_once( "./class.TemplatePower.inc.php" ); $tpl = new TemplatePower( "./main.tpl" ); $tpl->assignInclude( "content", $_GET['p'].".tpl" ); $tpl->prepare(); $tpl->printToScreen(); ?>
Dit komt van de website van TemplatePower af. |