Basta sostituire:
Codice PHP:
$subject = "Modulo proveniente dal sito www.sito.it";
Con:
Codice PHP:
$subject = "Messaggio inviato dall'utente: ".$_POST['nomeutente'];
Ed aggiungere al tuo codice HTML:
Codice HTML:
<tr> <td width="16%"><strong>Nome Utente</strong></td> <td width="84%"><input type="text" name="nomeutente" /></td> </tr>
Per esempio in questo modo:
Codice HTML:
<form name="form1" method="post" action="mail.php">
<table width="95%" align="center" >
<tr> <td colspan="2"><div align="center"><strong>NOME SQUADRA</strong></div></td> </tr>
<tr> <td width="16%"><strong>Nome Utente</strong></td> <td width="84%"><input type="text" name="nomeutente" /></td> </tr>
<tr> <td width="16%"><strong>Portiere</strong></td> <td width="84%"><input type="text" name="portiere"></td> </tr>
<tr> <td><strong>Difensore</strong></td> <td><input type="text" name="pifensore"></td> </tr>
<tr> <td><strong>Città </strong></td> <td><input type="text" name="citta"></td> </tr>
<tr> <td><strong>Centrocampista </strong></td> <td><input type="text" name="Centrocampista "></td> </tr>
<tr> <td><strong>Attaccante</strong></td> <td><input type="text" name="Attaccante"></td> </tr>
<tr> <td><strong>Testo</strong></td> <td><textarea name="testo" cols="40" rows="10"></textarea></td> </tr>
<tr> <td colspan="2"> </td> </tr> <tr> <td colspan="2"><div align="center"> <input type="submit" name="Submit" value="Invia"> </div></td> </tr> </table> </form>