riporto il codice (a questa pagina si può inviare il proprio nome)

<?php

if ( empty($_POST['nome']) ) $nome = "" ;
else $nome = $_POST['nome'] ;

if ( empty($_POST['nome']) ) $control_SCRIPT = "si" ;
else $control_SCRIPT = "no" ;

echo "

<html>

<head>
<title>destinazione</title>
</head>

<body>

<p align=\"center\">".$nome."
</p>

<!-- inizio form --!>
<form name=\"nome\" method=\"POST\" action=\"destinazione.php\">

<table border=\"0\" align=\"center\">
<tr>
<td align=\"center\">

<fieldset>
<input type=\"hidden\" name=\"nome\">
<input type=\"text\" name=\"nome\">
</fieldset>

</td>
</tr>
</table>

<center>
<!-- pulsante di ripristino --!>
<input name=\"ripristina\" type=\"reset\" value=\"ripristina\">

<!-- pulsante di invio --!>
<input name=\"invia\" type=\"submit\" value=\"invia\">

</center>

</form>
<!-- fine form --!>

</body>

</html>
";

?>