PHP gevorderde |
|
Citaat: Notice: Constant T_BYFILE already defined in /usr/home/mette/domains/mette.zoef-design.be/public_html/tpl/inc/class.TemplatePower.inc.php on line 33
Notice: Constant T_BYVAR already defined in /usr/home/mette/domains/mette.zoef-design.be/public_html/tpl/inc/class.TemplatePower.inc.php on line 34
Notice: Constant TP_ROOTBLOCK already defined in /usr/home/mette/domains/mette.zoef-design.be/public_html/tpl/inc/class.TemplatePower.inc.php on line 36
Fatal error: Cannot redeclare class templatepowerparser in /usr/home/mette/domains/mette.zoef-design.be/public_html/tpl/inc/class.TemplatePower.inc.php on line 39
Dan krijg ik dit allemaal
INDEX.PHP
---------
<?php
error_reporting (E_ALL);
include "./inc/class.TemplatePower.inc.php";
$tpl = new TemplatePower("tpl/home.tpl");
$tpl->assignInclude("head", "head.php");
$tpl->assignInclude("foot", "foot.php");
$tpl->prepare();
$tpl->printToScreen();
?>
HEAD.PHP
--------
<?php
error_reporting (E_ALL);
include "inc/class.TemplatePower.inc.php";
$tpl = new TemplatePower("tpl/head.tpl");
$tpl->prepare();
$tpl->assign(array("SiteNaam" => "Mette.Zoef-Design.Be",
"Slogan" => "Voor al de Weetjes",
"CSS" => "layout"));
$tpl->printToScreen();
?>
FOOT.PHP
--------
<?php
error_reporting (E_ALL);
include "inc/class.TemplatePower.inc.php";
$tpl = new TemplatePower("tpl/foot.tpl");
$tpl->prepare();
$tpl->assign(array("SiteNaam" => "Mette.Zoef-Design.Be",
"Jaar" => "2005 - ".date('Y', time())
));
$tpl->printToScreen();
?>
INDEX.PHP --------- <?php include "./inc/class.TemplatePower.inc.php"; $tpl = new TemplatePower("tpl/home.tpl"); $tpl->assignInclude("head", "head.php"); $tpl->assignInclude("foot", "foot.php"); $tpl->prepare(); $tpl->printToScreen(); ?> HEAD.PHP -------- <?php include "inc/class.TemplatePower.inc.php"; $tpl = new TemplatePower("tpl/head.tpl"); $tpl->prepare(); $tpl->assign(array("SiteNaam" => "Mette.Zoef-Design.Be", "Slogan" => "Voor al de Weetjes", "CSS" => "layout")); $tpl->printToScreen(); ?> FOOT.PHP -------- <?php include "inc/class.TemplatePower.inc.php"; $tpl = new TemplatePower("tpl/foot.tpl"); $tpl->prepare(); $tpl->assign(array("SiteNaam" => "Mette.Zoef-Design.Be", )); $tpl->printToScreen(); ?>
|