we are implementing your phpBB2 into our webserver. We are now using PHPLIB TEMPLATES powered engine, but we have problem
how to easy include your TEMPLATES into ours. Is there some possibility to assign your "compiled" template into PHP variable? It will be nice for us>
f.e.
<?
page_open(array("sess" => "Xshop_Session"));
// template inicialization etc...
....
....
include ("index.php") // your index.php from phpBB2
$phorum = HERE IS THE PROBLEM WHAT TO DO?;
$t->set_var(array("PHORUM"=>$phorum)); //assign into our {PHORUM}
//final stuff
$t->set_file(array("index" => "template_design.html"));
$t->parse("out", array("index"));
$t->p("out");
?>
Thank you for your help, i always tried to found it my way, but I spend days looking on this. In discuss I have found nothing related.
Thanks