Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Message from discussion IE: Problem mit Formularen
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Andreas Schwarz  
View profile   Translate to Translated (View Original)
 More options Jun 30 2002, 5:56 am
Newsgroups: de.comm.infosystems.www.browsers, de.comm.infosystems.www.authoring.misc
From: Andreas Schwarz <andreas.schw...@gmx.de>
Date: 30 Jun 2002 09:56:57 GMT
Local: Sun, Jun 30 2002 5:56 am
Subject: IE: Problem mit Formularen
Hallo,

in bestimmten Fällen überträgt der Internet Explorer (getestet mit 5.5 und
6.0) den Inhalt des ersten Feldes in einem Formular nicht an den Server.
Die Bedingungen:

- <form enctype="multipart/form-data" method="post"
- <meta http-equiv="Content-type" content="text/html; charset=iso-8859-1">
- Sonderzeichen in einer textarea (z.B. Euro-Zeichen oder bei Cut&Paste aus  
  einer PDF-Datei)

Als Workaround habe ich ein dummy-Formularfeld ganz vorne in das Formular
eingefügt.

Kennt jemand diesen Bug? Ist ganz alleine der IE schuld, oder habe ich bei
der Charset-Angabe irgendwas falsch gemacht? Ich kann ja schlecht im Voraus
wissen welche Zeichen der Benutzer in das Fomularfeld eingibt...

Hier ein PHP-Script das das Problem demonstriert. Wenn man z.B. das Euro-
Zeichen eingibt wird das erste hidden-Formularfeld nicht übertragen.

http://www.mikrocontroller.net/test.php:
===========================

<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form action="test.php" method="post" enctype="multipart/form-data">
<input type="hidden" name="hidden1" value="1">
<input type="hidden" name="hidden2" value="2">
<input type="hidden" name="hidden3" value="3">
<textarea name="textarea1" rows="10" cols="40"></textarea>
<input type="checkbox" name="checkbox1" value="1">
<input type="submit">
</form>
<pre>
<?
var_dump($_POST);
?>
</pre>
</body>
</html>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.