Forum Moderators: open
I've got a FORM something like:
<form method="post" action="action" enctype="multipart/form-data">
<input type="hidden" name="id" value="11">
... various form fields ...
<input type="submit" name="update">
<input type="file" name="file1">
<input type="file" name="file2">
<input type="file" name="file3">
<input type="submit" name="update">
</form>
Everything is fine in: Safari (Mac), Camino (Mac), Firefox (Mac, Win), MSIE (Mac), ...
But in MSIE (Win), when the _first_ submit button is clicked, the value of the hidden 'id' field is NOT included in the $_POST variables. However when the _second_ submit button is clicked (at the end of the form) the 'id' value IS passed. The other fields and files are always passed.
#*$!?!?