i'm using phplib templates, and it works fine, but i always get the following notice.
Notice: Undefined index: main in C:\Apache2\htdocs\web_project\baatzstreck\inc\template.inc on line 304
temlate. inc is out of the phplib library
here is my code handling the phplib stuff
$t = new Template("/apache2/htdocs/web_project/baatzstreck/templates","remove");
$t->set_file("main","main.tpl");
$t->set_var(array(
"BODY" => $body,
"SUBNAVI" => $subnavi,
"POP_UP" => $popup,
"BG" => $bg));
$t->pparse("out" , "main");
please help me