Onbekend |
|
<?php
$html = "<?php
require '../libs/Smarty.class.php';
$smarty = new Smarty;
$smarty->assign('TitleName', '');
$smarty->assign('Copyrights', '');
// display the index.tpl file
$smarty->display('index.tpl');
?>";
$fopen = fopen("../index.php", "w+");
fwrite($fopen, $html);
?>
<?php $html = "<?php require '../libs/Smarty.class.php'; $smarty = new Smarty; $smarty->assign('TitleName', ''); $smarty->assign('Copyrights', ''); // display the index.tpl file $smarty->display('index.tpl'); ?>"; $fopen = fopen("../index.php", "w+"); ?>
als ik nu de index.php open dan zijn de codes anders.
display('index.tpl') inplaats van $smarty->display('index.tpl').
Iemand een idee hoe ik dit probleem kan voorkomen?
|