Onbekend |
|
Hallo ik probeer hierin:
<?php
include_once( "../class.TemplatePower.inc.php" );
$tpl = new TemplatePower( "./index.tpl" );
$tpl->prepare();
$tpl->assign( "TITEL", "Berichtenbalk" );
$tpl->assign( "BERICHT", "<?php echo 'Naam'; ?>" );
$tpl->printToScreen();
?>
<?php include_once( "../class.TemplatePower.inc.php" ); $tpl = new TemplatePower( "./index.tpl" ); $tpl->prepare(); $tpl->assign( "TITEL", "Berichtenbalk" ); $tpl->assign( "BERICHT", "<?php echo 'Naam'; ?>" ); $tpl->printToScreen(); ?>
Een php-code in te zetten. Maar dat doet het niet
|