| | | | |
| | |
| Gast
Beiträge: n/a
| Code: <html> <head> </head> <body> <form method="post" action="sendmail.php"> Honig: : <input name="honig" type="text" id="honig" value="0" size="4" maxlength="25"> <input type="submit" value="OK"> </form> </body> </html> Code: <?php
$nachricht = "Guten Tag " . $namen . ",\n" ;
$kauf = "Honig: " . $honig ;
$kopf = "From: \"Besteller\" <skript@bienenprodukte.de>" ;
mail("webmaster@bienenprodukte.de", $nachricht, $kopf, $kauf ) ;
?>
<html>
<head>
</head>
<body>
<h2>Die E-Mail wurde verschickt.</h2>
zurück
</body>
</html>
|
| | |
| PHP Code Flüsterer Registriert seit: 21.08.2005 Beiträge: 4682 PHP-Kenntnisse: Fortgeschritten | |
| | |
| Erfahrener Benutzer Registriert seit: 21.05.2008
Beiträge: 9.937
![]() | http://de.php.net/manual/de/function.mail.php bool mail ( string to, string subject, string message [, string additional_headers [, string additional_parameters]] ) steht deinem mail(string to, string message, string additional_headers, string_additional_message); gegenüber |
| |
| | |
| Gast
Beiträge: n/a
| Code: <?php $to = "webmaster@bienenprodukte.de" ; $Betreff = "Bestellung" ; $message = "Honig: ", $honig ; mail($to, $Betreff, $message, $kopf ) ; ?> <html> <head> </head> <body> <h2>Die E-Mail wurde verschickt.</h2> zurück </body> </html> |
| Themen-Optionen | |
| Thema bewerten | |
|
|
Ähnliche Themen | ||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| Problem mit IF und Formular | Black-Devil | PHP Tipps 2008 | 12 | 03.03.2008 17:54 |
| Problem mit interaktiven Formular | max-dhom | HTML, Usability und Barrierefreiheit | 0 | 19.09.2006 10:28 |
| [JS] Problem mit Formular aus anderem Fenster | kiffy | HTML, Usability und Barrierefreiheit | 1 | 13.04.2006 08:53 |
| Problem mit Formular und Generierung einer Seite | PHP Tipps 2006 | 12 | 08.02.2006 18:51 | |
| Problem mit Formular | PHP Tipps 2007 | 13 | 03.11.2005 12:23 | |
| Formular Problem mit Übertragung (SunOS) | PHP Tipps 2005-2 | 12 | 07.09.2005 11:26 | |
| Problem mit Formular! | PHP Tipps 2005-2 | 5 | 12.08.2005 19:20 | |
| get problem in einem formular | nautiluS | PHP Tipps 2005 | 2 | 03.03.2005 22:58 |
| Problem bei Script Formular Daten und Baum | PHP Tipps 2004 | 1 | 27.09.2004 23:19 | |
| onClick problem mit Formular | Sclot | HTML, Usability und Barrierefreiheit | 2 | 21.09.2004 11:38 |
| Problem mit Login Formular | PHP Tipps 2004 | 7 | 16.09.2004 16:48 | |
| Problem mit Formular + Mail To+ PHP-Seiten weiterleitung | HTML, Usability und Barrierefreiheit | 3 | 27.08.2004 11:06 | |
| Problem mit Formular + Antwortseite | PHP Tipps 2004 | 2 | 22.07.2004 09:51 | |
| [Erledigt] Formular, Submit, PHP - Hab ein kleines Problem | PHP Tipps 2004 | 2 | 10.07.2004 13:50 | |
| Ich hab ein problem mit dem speichern von formular daten | PHP Tipps 2004 | 7 | 23.06.2004 07:11 | |

Dieser Inhalt ist unter einer Creative Commons-Lizenz lizenziert.