PHP expert |
|
nu het tog over template power gaat, kan ik ook wel een vraag stellen
Xenox heeft deze code in tutorial
index.php
<?php
include("class.TemplatePower.inc.php");
$tpl = new TemplatePower("index.tpl");
$tpl->prepare();
$tpl->assign(array("titel" => "TemplatePower",
"persoon" => "XenoX"
));
$tpl->newBlock("rij");
$tpl->assign(array("id" => "1",
"naam" => "Joël"
));
$tpl->newBlock("rij");
$tpl->assign(array("id" => "11",
"naam" => "FangorN"
));
$tpl->newBlock("rij");
$tpl->assign(array("id" => "20",
"naam" => "Wijnand"
));
$tpl->newBlock("rij");
$tpl->assign(array("id" => "25",
"naam" => "XenoX"
));
$tpl->printToScreen();
?>
<?php include("class.TemplatePower.inc.php"); $tpl = new TemplatePower("index.tpl"); $tpl->prepare(); $tpl->assign(array("titel" => "TemplatePower", "persoon" => "XenoX" )); $tpl->newBlock("rij"); $tpl->assign(array("id" => "1", "naam" => "Joël" )); $tpl->newBlock("rij"); $tpl->assign(array("id" => "11", "naam" => "FangorN" )); $tpl->newBlock("rij"); $tpl->assign(array("id" => "20", "naam" => "Wijnand" )); $tpl->newBlock("rij"); $tpl->assign(array("id" => "25", "naam" => "XenoX" )); $tpl->printToScreen(); ?>
index.tpl
<html>
<head>
<title>{titel}</title>
</head>
<body>
<h1>Welkom {persoon}!</h1>
<!-- START BLOCK : rij -->
{id} : {naam}
<!-- END BLOCK : rij -->
</body>
</html>
<html> <head> <title>{titel}</title> </head> <body> <h1>Welkom {persoon}!</h1> <!-- START BLOCK : rij --> {id} : {naam} </body> </html>
maar als ik nou de id en namen in een tabel wil laten zien, met een while loop dus (of wat het ook is een lus of whatever), waar doe ik dat dan in de index.php of index.tpl en hoe dan |