Hi zusamnmen,
ich hab ein kleines Problem bei der Veränderung eines Formulars. Die Besucher sollen ihre Anfrage über dieses Formular an mich richten. Leider sind die Angaben, die sie machen können, nur auf "Name", "Mail" und "Betreff" reduziert. Ich möchte jetzt aber noch zusätzliche Felder einügen. Wie geht das?
Hier mal der Code:
Code
<TABLE WIDTH="510" BORDER="0" style="border-collapse: collapse" bordercolor="#111111" cellpadding="0" cellspacing="0">
<TR>
<TD ALIGN=RIGHT width="100%" colspan="2">
</TD>
</TR>
<TR><TD ALIGN=RIGHT width="84">[B]
<font face="arial" size="2" color="#FFFFFF">
Name:</font>[/B]</TD>
<TD width="412"><INPUT NAME="name" SIZE="30" style="background:#CC3300; color:#F5F5F5; font-family:verdana"></TD></TR>
<TR><TD ALIGN=RIGHT width="84">[B]
<font face="arial" size="2" color="#FFFFFF">
Email:</font>[/B]</TD>
<TD width="412"><INPUT NAME="email" size="30" style="background:#CC3300; color:#F5F5F5; font-family:verdana"></TD></TR>
<TR><TD ALIGN=RIGHT width="84">[b]
<font face="arial" size="2" color="#FFFFFF">
Betreff:</font>[/b]</TD>
<TD width="412"><INPUT name="subject" readonly="readonly" size="40" style="background:#CC3300; color:#F5F5F5; font-family:verdana" value="Ihre Anfrge"></TD></TR>
<TR>
<TD ALIGN=RIGHT VALIGN=TOP width="84">[b]
<font face="arial" size="2" color="#FFFFFF">Nachricht:</font>[/b]</TD>
<TD width="412"><TEXTAREA NAME="message" style="background:#CC3300; color:#F5F5F5; font-family:verdana" rows="4" cols="60"></TEXTAREA></TD></TR>
<TR><TD width="84"></TD>
<TD width="412"><INPUT TYPE="submit" VALUE="Abschicken"><INPUT TYPE="reset"
VALUE="Reset"></TD></TR>
<TR><TD width="100%" colspan="2">
</TD>
</TR></TABLE>
Alles anzeigen
Und hier der Code der ezemail.php
PHP
<!--
EZ Email Sender.
Written By Owen Stampflee.
Copyright © 2000 Owen Stampflee.
http://www.1320web.com
mailto:info@1320web.com
Removing This Header is Strictly Prohibited.
-->
<?php
$yourEmail = "meine@mailadresse.de";
//The Email Address Form Results Will Be Sent To.
$thankyousubject = "Danke für die Benachrichtigung";
//This Will Be Displayed After A Submission
$thankyoumsg = "";
// This Will Be Displayed After A Submission
print "<html>";
print "<head><title>Danke</title>";
print "<meta http-equiv=\"refresh\" content=\"0; URL=http://www.economi.de/danke.htm\">";
print "</head>";
print "<body bgcolor=\"#000000\">";
mail($yourEmail, $subject, $message, "From: $name < $email >");
print "<CENTER>[B] $thankyousubject [/B]</CENTER> $thankyoumsg
<CENTER> </CENTER>"
?>
Alles anzeigen
Wenn das mit dem verändern nicht geht, dann wüsste ich gerne, ob es kostenlose Formulare gibt, die mehrere Felder haben.
Gruß, Michael