mit "den" Quellcode meine ich nicht diese 2 mickrigen Zeilen
sorry aber ich poste nur das nötige (regeln vom board).
wenn das komplette script gebraucht wird poste ich auch das
<body bgcolor=#003366 leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<link rel="stylesheet" href="style.css" type="text/css">
<table>
<?php
if($_POST)
{
$mailtext = "";
while(list($strName,$value) = each($_POST))
{
if(is_array($value))
{
foreach($value as $value_array)
{
$mailtext .= $strName.$delimiter.$value_array."\n";
}
}
else
{
$mailtext .= $strName.$delimiter.$value."\n";
}
}
if(get_magic_quotes_gpc())
{
$mailtext = stripslashes($mailtext);
}
include ('config.php');
$sub = $subject.$_GET['betreff'];
$mail_send = mail($admin_m, $sub, $mailtext, "From: ".$from);
if ($mail_send)
{
echo "Nachricht wurde verschickt";
}
else
{
echo 'Ein Fehler ist aufgetreten.';
}
exit;
}
?>
<form action="<?php print $_SERVER['PHP_SELF']; ?>" method="post">
<tr>
<td>Ihr Name:</td>
<td><input type="text" name="Absender" size="50" maxlength="45" /></td>
</tr>
<tr>
<td>Ihre E-Mail:</td>
<td><input type="text" name="E-Mail" size="50" maxlength="45" /></td>
</tr>
<tr>
<td>Betreff:</td>
<td><input type="text" name="betreff" size="50" maxlength="45" /></td>
</tr>
<tr>
<td>Ihr Nachricht:</td>
<td><textarea rows=10 cols=50 name="Nachricht" /></textarea></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="absenden" /></td>
</tr>
</table></form>
$sub = $subject.$_POST['betreff'];
$sub = $subject.$_POST['betreff'];
Kommentar