hi leute,
ich bekomme bei meinem scipt: Parse error: syntax error, unexpected '{' ..... on line 73.
	
Aber wenn ich mich nich irre gehört das doch da hin oder?
Danke im voraus.
gruß schnaxelion
					ich bekomme bei meinem scipt: Parse error: syntax error, unexpected '{' ..... on line 73.
PHP-Code:
	
	
.....
<?php
if (isset($_POST['betreff'], $_POST['message'], $_POST['email'])){
if (!empty($_POST['betreff']) && !empty($_POST['message']) && !empty($_POST['email'])) {
mail("...", $_POST['betreff'], $_POST['message'], $_POST['email']);  }
elseif (empty($_POST['betreff']) {  /*<-hier soll der fehler liegen*/
echo "Bitte geben Sie ein Betreff an!!"; }
elseif (empty($_POST['message']) {
echo "Bitte schreiben Sie etwas in das Textfeld!!"; }
elseif (empty($_POST['email']) {
echo "Bitte geben Sie Ihre E-Mail-Adresse an!!"; }
else { echo "Bitte füllen Sie die leeren Felder!!"; }
} 
?>
.....
Danke im voraus.
gruß schnaxelion
 
          
 syntax error, unexpected '{'
									
									
									syntax error, unexpected '{'
								
Kommentar