bueno cuando intentor hacer algo como esto en internet explorer no muestra nada... pero en firefox funciona bien...
Código PHP:
<html>
<form name="form1" action="boton.php" method="post">
<input type="image" name="prueba" value="enviar" src="boton.png">
</form>
</body>
</html>
<?php
if ($_POST[prueba] == enviar){
echo"sirve este pedazo de boton en IE?";
}
?>