Hallo
Kenne mich leider mit php nicht wirklich aus. Ich habe folgendes Script:
------------------------
<?
$name=$_REQUEST["name"];
$email=$_REQUEST["email"];
$tel=$_REQUEST["tel"];
$anfrage=$_REQUEST["anfrage"];
?>
und
<?
// ****** START DES PHP-SCRIPTS *********************************************
$body.="<FONT FACE='Verdana,Arial' SIZE=2>";
$body.="<B>Folgende Angaben wurden gemacht: </B><BR>";
$body.="<B>Name: </B>";
if ($name!=""): $body.=$Anrede." ".$name; else: $body.="keine Angabe"; endif;
$body.="<BR><B>E-mail: </B>";
if ($email!=""): $body.="<A HREF='mailto:".$email."'>".$email."</A>"; else: $body.="keine Angabe"; endif;
$body.="<BR>";
$body.="<B>Tel.: </B>";
if ($tel!=""): $body.=$tel; else: $body.="keine Angabe"; endif;
$body.="<BR><B>Anfrage: </B>";
if ($anfrage!=""): $body.=$anfrage; else: $body.="keine Angabe"; endif;
$empfaenger1="mat@";
// ****** MIME-Type Definition ***********
$kopf="MIME-VERSION:1.0\n";
$kopf.="CONTENT-TYPE:text/html; charset=\"ISO 8859-1\"\n";
$kopf.="FROM:site <>\n";
$kopf.="Reply-To: $Email \r\n";
@mail($empfaenger1," Anfrage via site ",$body, $kopf);
// ****** ENDE DES PHP-SCRIPTS *********************************************
?>
------------------------
Wenn ich im Formular etwas eingebe und abschicke, heisst es in der Mail-Benachrichtigung immer bei jedem Punkt "keine Angabe".
Ich komme leider nicht mehr weiter. Wird wahrscheinlich irgend ein kleiner dummer Fehler sein. Wäre froh, wenn ihr mir helfen könntet.
Vielen, lieben Dank!
matwic
Kenne mich leider mit php nicht wirklich aus. Ich habe folgendes Script:
------------------------
<?
$name=$_REQUEST["name"];
$email=$_REQUEST["email"];
$tel=$_REQUEST["tel"];
$anfrage=$_REQUEST["anfrage"];
?>
und
<?
// ****** START DES PHP-SCRIPTS *********************************************
$body.="<FONT FACE='Verdana,Arial' SIZE=2>";
$body.="<B>Folgende Angaben wurden gemacht: </B><BR>";
$body.="<B>Name: </B>";
if ($name!=""): $body.=$Anrede." ".$name; else: $body.="keine Angabe"; endif;
$body.="<BR><B>E-mail: </B>";
if ($email!=""): $body.="<A HREF='mailto:".$email."'>".$email."</A>"; else: $body.="keine Angabe"; endif;
$body.="<BR>";
$body.="<B>Tel.: </B>";
if ($tel!=""): $body.=$tel; else: $body.="keine Angabe"; endif;
$body.="<BR><B>Anfrage: </B>";
if ($anfrage!=""): $body.=$anfrage; else: $body.="keine Angabe"; endif;
$empfaenger1="mat@";
// ****** MIME-Type Definition ***********
$kopf="MIME-VERSION:1.0\n";
$kopf.="CONTENT-TYPE:text/html; charset=\"ISO 8859-1\"\n";
$kopf.="FROM:site <>\n";
$kopf.="Reply-To: $Email \r\n";
@mail($empfaenger1," Anfrage via site ",$body, $kopf);
// ****** ENDE DES PHP-SCRIPTS *********************************************
?>
------------------------
Wenn ich im Formular etwas eingebe und abschicke, heisst es in der Mail-Benachrichtigung immer bei jedem Punkt "keine Angabe".
Ich komme leider nicht mehr weiter. Wird wahrscheinlich irgend ein kleiner dummer Fehler sein. Wäre froh, wenn ihr mir helfen könntet.
Vielen, lieben Dank!
matwic
Kommentar