PHP interesse |
|
het script:
<?php
$tpl = new TemplatePower("templates/standaard/index.tpl");
if(isset($_GET['pagina'])) {
if(file_exists(htmlspecialchars($_GET['pagina']).'.php')) {
$pag = htmlspecialchars($_GET['pagina']).'.php';
} else {
$pag = 'errors/404.php';
}
} else {
$pag = 'home.php';
}
$tpl->assignInclude( "pagina", $pag);
$tpl->prepare();
$tpl->printToScreen();
?>
<?php $tpl = new TemplatePower("templates/standaard/index.tpl"); if(isset($_GET['pagina'])) { } else { $pag = 'errors/404.php'; } } else { $pag = 'home.php'; } $tpl->assignInclude( "pagina", $pag); $tpl->prepare(); $tpl->printToScreen(); ?>
in index.tpl staat dit:
<!-- INCLUDESCRIPT BLOCK : pagina -->
<!-- INCLUDESCRIPT BLOCK : pagina -->
maar ik kom tot de constatering dat hij de pagina NIET includeeerd...
heeft er iemand een idee hoe het komt?
greetzzz
|