// session_start();
function uploadit(){
$text = stripslashes( $_POST['FCKeditor1']);
$filename = 'primapg.php';
$Handle = fopen($filename,'w+');
fwrite($Handle , $text);
fclose($Handle);
}
$numero =$_GET['numero'];
$cartella =$_GET['cartella'];
switch ($numero){
case '1':
$_SESSION['numero']=1;
include ("elenco_file.php");
break;
case '2':
$_SESSION['numero']=2;
echo '';
break;
case '3':
$_SESSION['numero']=3;
include ("contatti.php");
break;
case '4':
$_SESSION['numero']=4;
include ("infoPostaCert.php");
break;
case '5':
$_SESSION['numero']=5;
include ("infoPostaCert.php");
break;
case '6':
$_SESSION['numero']=6;
include ("infoGaranzia.php");
break;
default :
include ("primapg.php");
echo '
';
break;
}
?>