phpbar.de logo

Mailinglisten-Archive

[php] eigenes kleines template -> phplib template

[php] eigenes kleines template -> phplib template

Ringo Großer swek at gmx.net
Mit Okt 5 15:27:21 CEST 2005


Hallo Michael,

Michael Borchers wrote:
> kurze frage, habe grad mal phplib template eingesetzt,
> weiss jmd wie man das fertige geparste template
> nicht printed, sondern in eine variable übergibt,
> um sie dann wie echo aufzugreifen?

$t = new template;
$t->set_file('content', 'template.tpl');

$t->set_var('PLATZHALTER', $wert);

$t->parse('out', 'content');
#$t->p('out'); // direkte ausgabe im browser
$content = $t->get('out'); // diese zeile ist für dich interessant
echo $content;

regards, Ringo


php::bar PHP Wiki   -   Listenarchive