Código PHP:
<html>
<head></head>
<body>
<form name="form1" action="boton.php" method="post">
<input type="hidden" name="formulario" value="enviar">
<input type="image" name="prueba" value="enviar" src="boton.png">
</form>
<?php
if ($_POST["formulario"] == "enviar")
{
echo "sirve este pedazo de boton en IE?";
}
?>
</body>
</html>