Wolf of Doom
Erfahrenes Mitglied
hi
irgendwie werden die angaben im contact form nicht mit gesendet
contactform
send.php
thx & cya
wolf
irgendwie werden die angaben im contact form nicht mit gesendet
contactform
PHP:
<HTML>
<title>Contact</title>
<body bgcolor="#FFFFFF" text="#000000">
<form method="post" action="send.php">
<table width="75%" border="0">
<tr>
<td width="10%">Name:</td>
<td width="90%">
<input type="text" name="$name" value=" $name">
</td>
</tr>
<tr>
<td width="10%">E-Mail:</td>
<td width="90%">
<input type="text" name="E-mail:" value="$email">
</td>
</tr>
<tr>
<td width="10%">Website:</td>
<td width="90%">
<input type="text" name="Website:" value="$website">
</td>
</tr>
<tr>
<td width="10%">Nachricht:</td>
<td width="90%">
<textarea name="nachricht" cols="30" rows="10">$nachricht</textarea>
<INPUT TYPE="hidden" NAME="userip" VALUE="<? echo $REMOTE_ADDR; ?>">
</td>
</tr>
<tr>
<td width="10%"> </td>
<td width="90%">
<input type="submit" name="Abschicken" value="senden">
<input type="reset" name="del" value="löschen">
</td>
</tr>
<tr>
<td width="10%"> </td>
<td width="90%"> </td>
</tr></table>
</form> </body> </html>
PHP:
<?
$addr = GetEnv("REMOTE_ADDR");
$host = GetEnv("REMOTE_HOST");
$body = "Aufgegeben von Host " . $host . ", IP-Adresse " . $addr . "\n\n";
if (IsSet($Name)) { $body = $body . "Name: " . $Name . "\n"; }
if (IsSet($EMail)) { $body = $body . "EMail: " . $EMail . "\n"; }
if (IsSet($TelNr)) { $body = $body . "TelNr: " . $TelNr . "\n"; }
$comment1 = ereg_replace("\015\n","\n",$comment);
$body = $body . ereg_replace("\015","\n",$comment1);
mail("root@t-screen.de","nachricht",$body);
?>
<HEAD>
<TITLE>Ihre Mitteilung</TITLE>
</HEAD>
<BODY>
<H1>Nachricht erfolgreich abgeschickt!</H1>
Vielen Dank für Ihre Nachricht!
<P>
</BODY>
thx & cya
wolf