D'accordo, provo. Ti faccio sapere.
Grazie per la risposta.
Edit:
Non importa, grazie; ho trovato ciò che fa per me.
Ho trovato come form html questo:
Codice HTML:
<form action="./mail.php" method="POST">
<table border="0">
<tr>
<td>Nome</td>
<td><input type="text" name="Nome" size="30"></td>
</tr>
<tr>
<td>Età</td>
<td><input type="text" name="Anni" size="5"></td>
</tr>
<tr>
<td>Città</td>
<td><input type="text" name="City" size="30"></td>
</tr>
<tr>
<td>Indirizzo</td>
<td><input type="text" name="Address" size="30"></td>
</tr>
<tr>
<td valign="top">Note</td>
<td><textarea rows="6" name="Note" cols="50"></textarea></td>
</tr>
<tr>
<td colspan="2" valign="bottom" align="center" height="30">
<input type="submit" value="Invia">
<input type="reset" value="Cancella"></td>
</tr>
</table>
</form>
e come codice PHP questo:
Codice PHP:
<?php
// L'INDIRIZZO DEL DESTINATARIO DELLA MAIL
$to = "mail@sito.it";
// IL SOGGETTO DELLA MAIL
$subject = "Modulo proveniente dal sito www.miosito.it";
// COSTRUIAMO IL CORPO DEL MESSAGGIO
$body = "Contenuto del modulo:\n\n";
$body .= "Nome: " . trim(stripslashes($_POST["Nome"])) . "\n";
$body .= "Età: " . trim(stripslashes($_POST["Anni"])) . "\n";
$body .= "Città: " . trim(stripslashes($_POST["City"])) . "\n";
$body .= "Indirizzo: " . trim(stripslashes($_POST["Indirizzo"])) . "\n";
$body .= "Note: " . trim(stripslashes($_POST["Note"])) . "\n";
// INTESTAZIONI SUPPLEMENTARI
$headers = "From: Modulo utenti<modulo@sito.it>";
// INVIO DELLA MAIL
if(@mail($to, $subject, $body, $headers)) { // SE L'INOLTRO È ANDATO A BUON FINE...
echo "La mail è stata inoltrata con successo.";
} else {// ALTRIMENTI...
echo "Si sono verificati dei problemi nell'invio della mail.";
}
?>
L'e-mail arriva, anche se con un po' di ritardo (ne ero consapevole perchè era scritto in un altro post).
Grazie lo stesso
Edit:
Ma come si fa a metterci un captcha per cercare di bloccare un minimo lo spam? E poi, come si fa a far sì che dopo un certo numero di secondi (per esempio 3) ritorni alla pagina precedente?
Grazie per risposte
Edit:
Il redirect alla pagina precedente l'ho trovato, ma non riesco a fare il captcha. Mi potreste dare qualche indicazione?
Grazie per risposte