Hallo !!!!
Ich weiß ja das ich keine Ahnung habe, aber nervig finde ich das schon, dass jeder Browswer was anderes zu bemängeln hat.
Also ich habe folgendes Problem
Unter netscape kommt die mail an und im explorer nicht
table>
<form name="Formular" form action="formmail.php4" method="POST" enctype="text/plain" onSubmit="return chkFormular()">
<input type="hidden" name="recipient" value="frank@libra-verlag.de">
<input type="hidden" name="subject" value="Aboformular">
<input type="hidden" name="Name/ Firma:" value="User">
<input type="hidden" name="Straße/ Nr. :" value="Straße">
<input type="hidden" name="PLZ/ Ort" value="Ort">
<input type="hidden" name="Email" value="Mail">
<tr>
<td align="right" >Name/ Firma:</td>
<td><input name="User" type="text" size="40" maxlength="40" ></td>
</tr><tr>
<td align="right" >Straße/ Nr. :</td>
<td><input type="text" name="Straße" size="40" maxlength="40" ></td>
</tr><tr>
<td align="right" >PLZ/ Ort :</td>
<td><input name="Ort" type="text" size="40" maxlength="40" ></td>
</tr><tr>
<td align="right" >Email :</td>
<td><input type="text" name="Mail" size="40" maxlength="40" ></td>
</tr>
</table>
<div style="position:absolute; top:130px; left:150px; ">
<input type="submit" value="Absenden"><input type="reset" value="Abbrechen">
</form>
</body></html>
Formmail
</head>
</body>
<?php
$fmtResponse= implode("", file("response.htt"));
$fmtMail= implode("", file("mail.htt"));
foreach($HTTP_POST_VARS as $key=> $val) {
$fmtResponse= str_replace("<$key>", $val, $fmtResponse);
$fmtMail= str_replace("<$key>", $val, $fmtMail);
}
mail($HTTP_POST_VARS["recipient"], $HTTP_POST_VARS["subject"], $fmtMail);
echo $fmtResponse;
?>
</body>
</html>
Wäre schön wenn sich mal wer dazu äussern würde !!!!
Noch einen schönen Tag
Frank