Salve, non riesco a trovare uno script pronto in php per la costruzione di un form completo come questo:
http://www.discoverygym.it/risorseumane.asp
trovo solo form in php semplici e non so come reintegrarli di nuove voci
questa è un esempio di form in php semplice:
form.html
mail.php
Mi date una mano?
http://www.discoverygym.it/risorseumane.asp
trovo solo form in php semplici e non so come reintegrarli di nuove voci
questa è un esempio di form in php semplice:
form.html
HTML:
<form name="form1" method="post" action="mail.php">
<table width="94%" align="center" >
<tr>
<td width="16%"><span class="Stile42">Nome</span></td>
<td width="84%"><input type="text" name="nome"></td>
</tr>
<tr>
<td><span class="Stile42">Cognome</span></td>
<td><input type="text" name="cognome"></td>
</tr>
<tr>
<td><span class="Stile42">Città </span></td>
<td><input type="text" name="citta"></td>
</tr>
<tr>
<td><span class="Stile42">Telefono</span></td>
<td><input type="text" name="telefono"></td>
</tr>
<tr>
<td><span class="Stile42">E-mail</span></td>
<td><input type="text" name="mail"></td>
</tr>
<tr>
<td height="24"><span class="Stile42">Oggetto</span></td>
<td><input type="text" name="oggetto"></td>
</tr>
<tr>
<td><span class="Stile42">Testo</span></td>
<td><textarea name="testo" cols="30" rows="10"></textarea></td>
</tr>
<tr>
<td colspan="2">
<div align="center">
<input type="submit" name="Submit" value="Invia" />
</div></td>
</tr>
</table>
<p> </p>
</form>
mail.php
PHP:
<?php
$to = "[email protected]";
$subject = "form mail";
$body = "Contenuto del modulo:\n\n";
$body .= "Nome: " . trim(stripslashes($_POST["nome"])) . "\n";
$body .= "Cognome: " . trim(stripslashes($_POST["cognome"])) . "\n";
$body .= "Citta': " . trim(stripslashes($_POST["citta"])) . "\n";
$body .= "Telefono: " . trim(stripslashes($_POST["telefono"])) . "\n";
$body .= "Mail: " . trim(stripslashes($_POST["mail"])) . "\n";
$body .= "Oggetto: " . trim(stripslashes($_POST["oggetto"])) . "\n";
$body .= "Testo: " . trim(stripslashes($_POST["testo"])) . "\n";
$headers = "From: Modulo utenti<>";
if(@mail($to, $subject, $body, $headers)) {
echo "Grazie!";
} else {
echo "Si sono verificati dei problemi nell'invio della mail.";
}
?>
Mi date una mano?