programma in esecuzione :








origine.htm

<html> <head> <title></title> </head> <body bgcolor="#80EEEE"> <p><a href="destinazione.php?variabile1=ciao&variabile2=marcello">collegamento</a></p> </body> </html>







destinazione.php

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