Hi!
I'm used to have Mozilla for testing my PHP sites when I'm coding. The
site's nearly finished, now I've made a test with the Internet
Exlporer... guess what... failed.
The problem: I'm using a form that submit's (POST) its data via three
different image buttons (depending on which button you click,
something different should happen):
<form action="id.php" method="post" name="form2">
<input name="id1" type="image" id="id1" value="id1" src="id1.gif">
<input name="id2" type="image" id="id2" value="id2" src="id2.gif">
<input name="id3" type="image" id="id3" value="id3" src="id3.gif">
</form>
(This is kind of a summary of the code!)
Now while with Mozilla everything works perfect, the Internet Explorer
can't handle this: Not one of the variables id1, id2 or id3 is set in
the target script - but it is in Mozilla. Any solutions / workarounds?
I have several hidden fields in the original source, so I don't want
to use URL variables.
-- Nicolas
I'm used to have Mozilla for testing my PHP sites when I'm coding. The
site's nearly finished, now I've made a test with the Internet
Exlporer... guess what... failed.
The problem: I'm using a form that submit's (POST) its data via three
different image buttons (depending on which button you click,
something different should happen):
<form action="id.php" method="post" name="form2">
<input name="id1" type="image" id="id1" value="id1" src="id1.gif">
<input name="id2" type="image" id="id2" value="id2" src="id2.gif">
<input name="id3" type="image" id="id3" value="id3" src="id3.gif">
</form>
(This is kind of a summary of the code!)
Now while with Mozilla everything works perfect, the Internet Explorer
can't handle this: Not one of the variables id1, id2 or id3 is set in
the target script - but it is in Mozilla. Any solutions / workarounds?
I have several hidden fields in the original source, so I don't want
to use URL variables.
-- Nicolas
Comment