This is because you're abusing <input type="image"> to have a button with a background image. The <input type="image"> is intented as an image map where you'd be interested in the X and Y coordinates of the mouse pointer on the button. Those values are namely sent as request parameters.
In HTML/PHP terms, the
<input type="image" name="subscribe">
will be available as
$x = $_POST['subscribe.x']; // Contains X coordinate of mouse pointer on button.
$y = $_POST['subscribe.y']; // Contains Y coordinate of mouse pointer on button.
However, on modern browsers other than MSIE, also the "plain" name and value of the button is been sent along, probably with the intention to be more forgiving on poorly designed websites.
$subscribe = $_POST['subscribe']; // Contains "value" of button.
Relying on $_POST['subscribe'] in the server side explains why your form doesn't work on MSIE.
See also this extract of the w3 HTML spec:
...
image
Creates a graphical submit button. The value of the src attribute specifies the URI of the image that will decorate the button. For accessibility reasons, authors should provide alternate text for the image via the alt attribute.
When a pointing device is used to click on the image, the form is submitted and the click coordinates passed to the server. The x value is measured in pixels from the left of the image, and the y value in pixels from the top of the image. The submitted data includes name.x=x-value and name.y=y-value where "name" is the value of the name attribute, and x-value and y-value are the x and y coordinate values, respectively.
So, to fix your problem, you have 2 options:
Check for presence of subscribe.x and/or subscribe.y request parameter instead to take action accordingly (not recommended).
Don't abuse image input type with the sole purpose to have a background on the button, just use CSS (more recommended):
<input type="submit" id="subscribe" name="subscribe">
with
#subscribe {
border: 0;
width: 100px; /* Let it match the actual image's dimensions. */
height: 20px; /* Let it match the actual image's dimensions. */
background-image: url('images/1.jpg');
}
#subscribe:hover {
background-image: url('images/1_hv.jpg');
}
Note that :hover pseudoselector doesn't work in IE6 on elements other than <a>, but I don't expect that you would care about this browser. If you do, then have a look in the JS corner for the solution.
onmouseouthandler? Have you tried running it through the w3c validator? – jeffamaphone Dec 27 '10 at 1:48$data["button"]please paste more code also the JS part.. – ifaour Dec 27 '10 at 1:58echo 'blabla.. value="'.$var.' blabla';?? – ifaour Dec 27 '10 at 2:02