eg.
file 1:template.html
<TD>{variable}</TD>
file 2:work.php
$template->set_var("variable","1");
$template->parse("out", "template");
$template->set_var("variable","2");
$template->parse("out", "template");
I need that the second parse do not overwrite
the first one.
I've probed to call template.html with two different handdles.