<?PHP
//include "Libraries/template.inc";
$t = new Template("Templates/");
$myArray = array("top_frame" =>"top_frame.ihtml");
$t->set_file($myArray);
reset ($myArray);
/*
*
* Valorizzazione dei tag necessari
*
*/
$t->set_var("BASKET_LINK", 'basket.php');
$t->set_var("CATEGORIES_LINK", 'categories_list.php');
$t->set_var("LOGIN_LINK", 'login.php');
$t->set_var("ADMIN_LINK", 'adm_index.php');
$t->aparse("top_frame", "top_frame");
?>