Verfasst: 06.11.2004 12:01
Kannst mal alle 4 Dateien des Mods in eine zip packen und hier verlinken?
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
$textfeld=$HTTP_POST_VARS['textfeld'];
$textfeld .= $HTTP_POST_VARS['name'];
$textfeld .= $HTTP_POST_VARS['vorname'];
$textfeld .= $HTTP_POST_VARS['geburtstag'];
$textfeld .= $HTTP_POST_VARS['strasse'];
$textfeld .= $HTTP_POST_VARS['plz'];
$textfeld .= $HTTP_POST_VARS['wohnort'];
$textfeld .= $HTTP_POST_VARS['telefon'];
$textfeld .= $HTTP_POST_VARS['motorrad'];
$name=$HTTP_POST_VARS['name'];
$mail=$HTTP_POST_VARS['mail'];
$betreff=$HTTP_POST_VARS['betreff'];
$email_from = "$name<$mail>";
$email_to = "info@swissbikers.ch";
$header = "From:$email_from\n";
mail($email_to,$betreff,$textfeld,$header);
Code: Alles auswählen
$textfeld = $HTTP_POST_VARS['textfeld'];
$textfeld .= $HTTP_POST_VARS['name'];
$textfeld .= $HTTP_POST_VARS['vorname'];
$textfeld .= $HTTP_POST_VARS['geburtstag'];
$textfeld .= $HTTP_POST_VARS['strasse'];
$textfeld .= $HTTP_POST_VARS['plz'];
$textfeld .= $HTTP_POST_VARS['wohnort'];
$textfeld .= $HTTP_POST_VARS['telefon'];
$textfeld .= $HTTP_POST_VARS['motorrad'];
$betreff = $HTTP_POST_VARS['betreff'];
$mail = $HTTP_POST_VARS['mail'];
$email_from = "$name <$mail>";
$email_to = "info@swissbikers.ch";
$header = "From:$email_from\n";
mail($email_to,$betreff,$textfeld,$header);
Code: Alles auswählen
$textfeld = $HTTP_POST_VARS['textfeld'].'\n';
$textfeld .= $HTTP_POST_VARS['name'].'\n';
$textfeld .= $HTTP_POST_VARS['vorname'].'\n';
$textfeld .= $HTTP_POST_VARS['geburtstag'].'\n';
$textfeld .= $HTTP_POST_VARS['strasse'].'\n';
$textfeld .= $HTTP_POST_VARS['plz'].'\n';
$textfeld .= $HTTP_POST_VARS['wohnort'].'\n';
$textfeld .= $HTTP_POST_VARS['telefon'].'\n';
$textfeld .= $HTTP_POST_VARS['motorrad'].'\n';
$betreff = $HTTP_POST_VARS['betreff'];
$mail = $HTTP_POST_VARS['mail'];
$email_from = "$name <$mail>";
$email_to = "info@swissbikers.ch";
$header = "From:$email_from\n";
mail($email_to,$betreff,$textfeld,$header);
'\n' muss so aussehen "\n"$textfeld = $HTTP_POST_VARS['textfeld'].'\n';