Ver Mensaje Individual
  #13 (permalink)  
Antiguo 11/07/2011, 12:23
jisravila
 
Fecha de Ingreso: noviembre-2009
Mensajes: 110
Antigüedad: 14 años, 6 meses
Puntos: 1
Respuesta: No funciona Hover CSS en Firefox 5.0

Cita:
Iniciado por GAST0N Ver Mensaje
podrias dejar el codigo con el PHP . porque la imagen que habias puesto ya no sirve
Código HTML:
<? $sel_resultado="SELECT * FROM proveedores WHERE borrado=0 AND ".$where;
						   $sel_resultado=$sel_resultado."  limit ".$iniciopagina.",10";
						   $res_resultado=mysql_query($sel_resultado);
						   $contador=0;
						   
                                                   while ($contador < mysql_num_rows($res_resultado)) {
                                                       if ($contador % 2) { $fondolinea="itemParTabla"; } else { $fondolinea="itemImparTabla"; }?>
						<tr class="<?php echo $fondolinea; ?>">
							<td class="aCentro" width="8%"><? echo $contador+1;?></td>
							<td width="6%"><div align="center"><? echo mysql_result($res_resultado,$contador,"codproveedor")?></div></td>
							<td width="38%"><div align="left"><? echo mysql_result($res_resultado,$contador,"nombre")?></div></td>
							<td class="aDerecha" width="13%"><div align="center"><? echo mysql_result($res_resultado,$contador,"nif")?></div></td>
							<td class="aDerecha" width="19%"><div align="center"><? echo mysql_result($res_resultado,$contador,"telefono")?></div></td>
							<td width="5%"><div align="center"><a href="#"><img src="../img/modificar.png" width="16" height="16" border="0" onClick="modificar_proveedor(<?php echo mysql_result($res_resultado,$contador,"codproveedor")?>)" title="Modificar"></a></div></td>
							<td width="5%"><div align="center"><a href="#"><img src="../img/ver.png" width="16" height="16" border="0" onClick="ver_proveedor(<?php echo mysql_result($res_resultado,$contador,"codproveedor")?>)" title="Visualizar"></a></div></td>
							<td width="6%"><div align="center"><a href="#"><img src="../img/eliminar.png" width="16" height="16" border="0" onClick="eliminar_proveedor(<?php echo mysql_result($res_resultado,$contador,"codproveedor")?>)" title="Eliminar"></a></div></td>
						</tr>
						<? 
                                                
                                                        $contador++;
							}// Fin while
						?>