venom_mau:
efectivamente es un bug en IE, tienes dos alternativas para solucionarlo
Código para input_image.php
Código PHP:
Ver original<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es" >
<head>
<title>XHTML 1.0 Strict</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<?php
$fila1 = "valor_fila_uno";
?>
<form id="uno" method="post" action="input_image.php">
<p>
<!--
<input type="hidden" name="procesar" value="<?php echo "$fila1"; ?>" />
-->
<input type="image" src="imagen.png" alt="" name="enviar" />
<!-- o va el input image con el input hidden o el button, habria que retocarlo con css -->
<button name="procesar" value="<?php echo "$fila1"; ?>" type="submit"><img src="imagen.png" alt="" /></button>
</p>
</form>
<div>
<hr />
<?php
if(isset($_POST['procesar'])){ echo $_POST['procesar'];
}else{
echo "nada";
}
?>
</div>
</body>
</html>
Creo que usar el input image + un campo hidden con el valor a pasar es más practico, te evitas el css para adaptar el button.
Saludos