Subversion Repositories Sigmater

Rev

Blame | Last modification | View Log | Download | RSS feed

<?php
require_once('./include/LSTU_init.inc');

/////////////////////////////////////////////////
// INIZIALIZZAZIONE SESSIONE
/////////////////////////////////////////////////
ini_set('session.save_handler', 'files');
ini_set('session.save_path', APP_PATH.'tmp/');
session_start();        

$_htitle = (isset($_htitle)) ? $_htitle : 'SigmaTer';
$_hpage = (isset($_hpage)) ? $_hpage : 'SigmaTer';

echo "<html><head><title>$_htitle</title>";
echo "<LINK REL=STYLESHEET TYPE=\"text/css\" HREF=\"js/LSTJ_css_cat.css\">";
echo "<script language=\"javascript\" src=\"js/LSTJ_functions.js\"></script>";
echo "</head><body>";
echo "<table width=90% align=\"center\">";
echo "<tr><td width=10%> </td>";
echo "<td align=\"center\" class=\"titolo1\">SigmaTer</td>";
echo "<td width=10%> </td></tr>";
echo "<tr><td width=10%> </td>";
echo "<td align=\"center\" class=\"titolo2\">$_hpage</td>";

if (basename($_SERVER['PHP_SELF']) == 'LSTV_main.php')
        echo "<td width=10%> </td>";
else    
        echo "<td width=10%><a href=\"LSTV_main.php?".SID."\">Main</a></td>";

echo "</tr></table>";
echo "<hr><br></table>";
?>