<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php
session_start();
$email=$_SESSION['emaildb'];
$password=$_SESSION['passworddb'];
$nome=$_SESSION['nomedb'];
$cognome=$_SESSION['cognomedb'];
$stato=$_SESSION['statodb'];
$regione=$_SESSION['regionedb'];
$provincia=$_SESSION['provinciadb'];
$comune=$_SESSION['comunedb'];
$indirizzo=$_SESSION['indirizzodb'];
$cap=$_SESSION['capdb'];
$telefono=$_SESSION['telefonodb'];
$sesso=$_SESSION['sessodb'];
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
if($sesso=="m")
echo"<title>L'Aquilone Pubblicitario - Bentornato $nome!</title>";
if($sesso=="f")
echo"<title>L'Aquilone Pubblicitario - Bentornata $nome!</title>";
?>
<style>
.contenitore {
width: 800px;
margin-right: auto;
margin-left: auto;
margin-top: -10px;
}
#header {
height: 150px;
width: 800px;
background-image: url(aquilone.jpg);
}
#sinistra {
width: 250px;
margin-top: 10px;
}
#esci {
margin-left: 40px;
float: left;
}
.testologin {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
margin-left: 25px;
}
.a {
color: #F03;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
}
#modifica {
float: left;
height: 20px;
width: 80px;
margin-left: 25px;
}
</style>
</head>
<?php
echo"<body>";
echo"<div id='contenitore' class='contenitore'>";
echo"<div id='header'>";
echo"</div>";
echo"<div id='sinistra'>";
echo"<div id='login'>";
if($sesso=="m")
echo"<p class='testologin'>Bentornato $nome!</p>";
if($sesso=="f")
echo"<p class='testologin'>Bentornata $nome!</p>";
echo"<p class='testologin'>email: $email</p>";
echo"<pre><p class='testologin'>Indirizzo: $indirizzo<br /> $comune<br /> $cap<br /> $provincia<br /> $regione<br /> $stato</p></pre>";
echo"<p class='testologin'>Telefono: $telefono</p>";
echo"<div id='modifica'>";
echo"<a href='#' class='a'>Modifica Dati</a>";
echo"</div>";
echo"<div id='esci'>";
echo"<a href='logout.php' class='a'>Esci</a>";
echo"</div>";
echo"</div>";
echo"</div>";
echo"</div>";
echo"</body>";
?>
</html>