gebruiker35
Gebruiker
- Lid geworden
- 29 mrt 2008
- Berichten
- 434
Er zit in regel 25 in de variabele een fout. Ik begrijp het echt niet.. wie kan mij helpen?
PHP:
<?php
$frommail = htmlspecialchars($_POST["frommail"]);
$tomail = htmlspecialchars($_POST["tomail"]);
$subject = htmlspecialchars($_POST["subject"]);
$bericht = htmlspecialchars($_POST["bericht"]);
if (!$frommail) {
echo "ERROR CODE: 2";
exit; }
if (!$tomail) {
echo "ERROR CODE: 2";
exit; }
if (!$bericht) {
echo "ERROR CODE: 3";
exit; }
else {
$tijd = time();
$datum = strftime("%d/%m/%y %H:%M", $tijd);
$ip = getenv("REMOTE_ADDR");
$message = " " . $bericht . " ;
$message = str_replace ("<br>","\n", $message);
mail("$tomail", "$subject",
$message, "From: " . $frommail . "");
echo "Your e-mail has sended.";
}
?>