programma in esecuzione :








origine.htm

<html> <head> <title></title> </head> <body> <form method="POST" action="destinazione.php"> <p align="center">scrivi quello che vuoi : <input type="text" value="ciao" name="stringa" size="15"></p> <p align="center"><input type="submit" value="OK" name="bottone"></p> </form> </body> </html>







destinazione.php

<html> <head> <title></title> </head> <body> <?php echo "<p>$stringa</p>"; ?> </body> </html>