<html>
<head>
<title>Contatti</title>
</head>
<body>
<?php
if(isset($_POST['invia']))
{
if(empty($_POST['email']))
$errore[$guestField][]= "Non hai inserito l'e-mail nel campo obbligatorio<br />";
if(empty($_POST['oggetto']))
$errore[$guestField][]= "Non hai inserito l'oggetto nel campo obbligatorio<br />";
if(empty($_POST['testo']))
$errore[$guestField][]= "Non hai inserito il testo<br />";
if(!isset($errore[$guestField]))
{
$nome = $_POST['nome'];
$email = $_POST['email'];
$testo = $_POST['testo'];
$motivo = $_POST['oggetto'];
$lettera = "Messaggio (oggetto: $motivo) : $testo";
if(mail("necron8686@hotmail.com", "Dagli utenti", $lettera,"From:
necron8686@hotmail.com"))
{
echo "<script>alert(\"La mail è stata spedita con successo\")</script>";
}
else $errore[] = "Problemi nel mandare l'email....";
}
}
?>
<body>
<form method = "POST" action = "<?php echo $_SERVER['PHP_SELF'];?>">
Nome : <input type = "text" name = "nome" /><br />
*E-Mail : <input type = "text" name = "email" /><br />
*Oggetto: <input type = "text" name = "Oggetto" /><br />
<textarea cols = "50" rows = "10" name = "testo"></textarea><br /> <br />
<input type = "submit" name = "invia" value = "invia" />
</div>
</form>
<?php
if(isset($error))
foreach($error[] as $key => $value) echo $value;
?>
</body>
</html>