Codice:
<?php
session_start()
?>
<html>
<head>
</head>
<body>
<form method="post" action="">
<input type="text" name="nome_utente" value=" <?php if(isset($_POST['submit'])) echo $_SESSION['nome_utente']; ?>"
<button type="submit" name="submit">reg.</button>
</form>
</form>
</body>
</html>
<?php
//session_start();
//tutto il resto...
if ($nome_utente == ' ')
$_SESSION['nome_utente'] = $_POST['nome_utente'];
?>
Ho provato a mettere anche nell' if(....) un header('locationagina.php'), ma nulla da fare, come risolvere? Inoltre dove pongo il session_destroy(); ?