Codice PHP:
<?php
session_start();
$query = "SELECT * FROM tabella WHERE utente='".$_SESSION['utente']."'";
$result = mysql_fetch_assoc(mysql_query($query));
?>
<html>
<head>
bla bla
</head>
<body>
Benvenuta <?php echo $_SESSION['utente'] ?></p>
I tuoi dati sono
Nome utente: <?php echo $_SESSION['utente'] ?>
Nome: <?php echo $result['nome'] ?>
Password: <?php echo $result['password'] ?>
Regione: <?php echo $result['regione'] ?>
</p>
</body>
</html>
Fermo restando che non vedo il motivo di mostrare la password su una pagina web.