Hay dos input con el name accion.
No debes comprobar el value, sino el name.
CAmbias los name:
Código HTML:
Ver original<form id="form1" name="form1" method="post" action="malo.php"> <input type="checkbox" name="jugador" id="jugador" value="<?php echo $row1["idJugador"];?>" />
<input type="image" name="aceptar" id="accion" src="Imagenes/aceptar.png" width="16" height="16" border="0" value="Aceptar"/> <input type="image" name="eliminar" id="accion" src="Imagenes/eliminar.png" width="16" height="16" border="0" value="Rechazar"/>
Compruebas en cual se hizo clic
Código PHP:
<?php
if( $_POST["aceptar"] ) echo 'Aceptarrrrrrr';
if( $_POST["eliminar"] ) echo 'Rechazarrrrrrr';
}
?>