D
d3spind
Guest
Hallo zusammen,
ich habe ein Problem mit dem EZ-Formular Generator.
Installation, Einbindung usw alles kein Thema, funktioniert.
Leider stellen die erzeugten E-Mails keine Umlaute dar. Woran könnte das liegen?
Wenn ihr sonst irgendwelche Codes usw. für die Beantwortung braucht, bitte mitteilen.
Gruß
Michael
ich habe ein Problem mit dem EZ-Formular Generator.
Installation, Einbindung usw alles kein Thema, funktioniert.
Leider stellen die erzeugten E-Mails keine Umlaute dar. Woran könnte das liegen?
Wenn ihr sonst irgendwelche Codes usw. für die Beantwortung braucht, bitte mitteilen.
Gruß
Michael
HTML:
<script language="javascript" type="text/javascript">
function check_fields(doc){
if(doc.keystring.value == ''){
alert('Sicherheitscode fehlt');
return false;
}
if(doc.fd14.value == ''){
alert('Anrede Feld ist leer');
return false;
}
if(doc.fd15.value == ''){
alert('Vorname Feld ist leer');
return false;
}
if(doc.fd16.value == ''){
alert('Name Feld ist leer');
return false;
}
if(doc.fd21.value == ''){
alert('E-Mail Feld ist leer');
return false;
}
if(doc.fd23.value == ''){
alert('Betreff Feld ist leer');
return false;
}
if(doc.fd24.value == ''){
alert('Ihre Mitteilung Feld ist leer');
return false;
}
return true;
}
</script>
HTML:
<form method="post" onsubmit="return check_fields(this);" enctype="multipart/form-data" action="http://www.beispiel.de/formgen/process.php" id="form6">
<table border="0" cellpadding="5" cellspacing="1" bgcolor="#F3F3F3">
<tr>
<td valign="top">Anrede <font color=red>*</font></td>
<td valign="top" align="left">
<select name="fd14">
<option value="0"></option>
<option value="1">Herr</option>
<option value="2">Frau</option>
</select>
</td>
</tr>
<tr>
<td valign="top">Vorname <font color=red>*</font></td>
<td valign="top" align="left">
<input type="text" name="fd15" size=30>
</td>
</tr>
<tr>
<td valign="top">Name <font color=red>*</font></td>
<td valign="top" align="left">
<input type="text" name="fd16" size=30>
</td>
</tr>
<tr>
<td valign="top">Anschrift</td>
<td valign="top" align="left">
<input type="text" name="fd17" size=30>
</td>
</tr>
<tr>
<td valign="top">PLZ</td>
<td valign="top" align="left">
<input type="text" name="fd18" size=30>
</td>
</tr>
<tr>
<td valign="top">Ort</td>
<td valign="top" align="left">
<input type="text" name="fd19" size=30>
</td>
</tr>
<tr>
<td valign="top">Telefon</td>
<td valign="top" align="left">
<input type="text" name="fd20" size=30>
</td>
</tr>
<tr>
<td valign="top">E-Mail <font color=red>*</font></td>
<td valign="top" align="left">
<input type="text" name="fd21" size=30>
</td>
</tr>
<tr>
<td valign="top">Betreff <font color=red>*</font></td>
<td valign="top" align="left">
<input type="text" name="fd23" size=30>
</td>
</tr>
<tr>
<td valign="top">Ihre Mitteilung <font color=red>*</font></td>
<td valign="top" align="left">
<textarea name="fd24" cols=23 rows=5></textarea>
</td>
</tr>
<tr>
<td>Sicherheitscode <font color=red>*</font></td>
<td align="left">
<table><tr><td><input type="text" name="keystring" size=6></td><td><iframe width=120 marginHeight=0 marginWidth=0 height=60 topmargin=0 frameborder=0 scrolling="no" src="http://www.beispiel.de/formgen/captcha/index.php?<?php echo session_name()?>=<?php echo session_id()?>"></iframe></td></tr></table>
</td>
</tr>
<tr>
<td></td>
<td align="left">
<input type=submit id="submit" value="Weiter">
</td>
</tr>
</table>
<input type="hidden" name="redirect" value="">
<input type="hidden" name="form_id" value="6">
</form>
Zuletzt bearbeitet von einem Moderator: