Hallo,
Ich habe mir ein kleines Kontaktformular gebastelt!!!
Pilotify.tk heißt meine Website, bei Home ist das zweite Kontakt.
Wenn ich darauf klicke kommt auch noch das Kontaktformular doch wenn ich auf abschicken klicke kommt da folgender Fehler:Parse error: syntax error, unexpected '[', expecting '(' in /users/train/www/hallo.php on line 19
Code:
<html><head>
<body style="background-image:url(http://www.nof-schule.de/assets/images/zentriert.gif) background-repeat: repeat-y-x;">
</style>
<?php
if[$_POST['von']!="" and $_POST['mail']!="" and $_POST['betreff']!="" and $_POST['nachricht']!=""] {
$empf = "[email protected]";
$betreff = $_POST['betreff'];
$from = "From: ";
$from .= $_POST["von"];
$from .= " <";
$from .= $_POST['mail'];
$from .= ">\n";
$from .= "Reply-To: ";
$from .= $_POST['mail'];
$from .= "\n";
$from .= "Content-Type: text/html\n";
$text = $_POST['nachrichten'];
mail($empf, $betreff, $text, $from);
echo "Vielen Dank. Ihre Anfrage wird in kürze bearbeitet.";
} else {
echo "Bitte alle Felder ausf&uulen"
?>
</form>
</body>
</head>
</html>
Das ist der Code aus der PHP Datei!!
Gruß
Ich habe mir ein kleines Kontaktformular gebastelt!!!
Pilotify.tk heißt meine Website, bei Home ist das zweite Kontakt.
Wenn ich darauf klicke kommt auch noch das Kontaktformular doch wenn ich auf abschicken klicke kommt da folgender Fehler:Parse error: syntax error, unexpected '[', expecting '(' in /users/train/www/hallo.php on line 19
Code:
<html><head>
<body style="background-image:url(http://www.nof-schule.de/assets/images/zentriert.gif) background-repeat: repeat-y-x;">
</style>
<?php
if[$_POST['von']!="" and $_POST['mail']!="" and $_POST['betreff']!="" and $_POST['nachricht']!=""] {
$empf = "[email protected]";
$betreff = $_POST['betreff'];
$from = "From: ";
$from .= $_POST["von"];
$from .= " <";
$from .= $_POST['mail'];
$from .= ">\n";
$from .= "Reply-To: ";
$from .= $_POST['mail'];
$from .= "\n";
$from .= "Content-Type: text/html\n";
$text = $_POST['nachrichten'];
mail($empf, $betreff, $text, $from);
echo "Vielen Dank. Ihre Anfrage wird in kürze bearbeitet.";
} else {
echo "Bitte alle Felder ausf&uulen"
?>
</form>
</body>
</head>
</html>
Das ist der Code aus der PHP Datei!!
Gruß