grazie per la risposta
solo che non riesco a far funzionare il php
io metto
Codice HTML:
<form action="welcome.php" method="post">
Name: <input type="text" name="fname" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
nella pagina welcome.php
inserisco
Codice PHP:
Welcome <?php echo $_POST["fname"]; ?>!<br />
You are <?php echo $_POST["age"]; ?> years old.
ma i dati inseriti nel form non vengono visualizzati in welcome.php
mi viene un dubbio è possibile che sia chrome che firefox non leggano il php bene?