ho scritto due programmini per provare il medoto POST

test.htm:------------------------

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Nuova pagina 1</title>
</head>

<body>
<form method=POST action="TEST.PHP">
DIGITA PAROLA
<input id="Pippo" type=text>




<input type=SUBMIT>
</form>
</body>

</html>

fine test.htm-------------------

test.php:----------------------

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>parola digitata</title>
</head>

<body>
parola digitata:
<?php
echo $Pippo;
?>
</body>

</html>
fine test.php ---------------------------------

se carico dal bowser http://localhost/test.htm
e digito una parola qualsiasi nel campo Pippo
premo Invia Query
nella pagina test.php non esegue echo $Pippo

perche?

grazie per la risposta

alba 63