hi!
good morning to everybody 😉
i've got a question: with a php skript i create a template and fill it with values from database. it works fine but i have additionally to save that template automatically (for archive). is it possible to direkt the output to a .html-file (for saving) or something else?
building the template:
....
include "template.inc";
$t = new Template();
$t->set_file("handle","template.ihtml");
$t->set_var("variable1",$variable1);
$t->parse("output","handle");
$t->p("output");
....
hope, someone has an idea..
greetings
coorgun