dopo che l'utente si è loggato vorrei che si possano vedere i dati immessi (password e regione) della tabella, come si fa?

la tabella è questa :

id (auto_increment)
nome
utente
password
regione


la login richiede:

utente
password


questa è la pagina login_success.php:

Codice PHP:
  <?php 
session_start
();
if(!
session_is_registered(utente)){
header("location:main_login.php");
}

else
{
echo 
"Benvenuta ".$_SESSION['utente'];
}

?>



<html>
<body>
</body>
</html>
 
 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>login_success</title>
<link href="css.css" rel="stylesheet" type="text/css" />
<style type="text/css">body,td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
}
</style>
</head>

<body>
</body>
</html>