Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/12/2009, 08:58
Avatar de kike00
kike00
 
Fecha de Ingreso: febrero-2005
Ubicación: El Salvador
Mensajes: 180
Antigüedad: 19 años, 2 meses
Puntos: 7
Respuesta: Problemas con ie

@raulbotella Solo una pequeña correccion con la funcion empty que pusiste
es empty() no $_empty :)

Código PHP:
Ver original
  1. <?php
  2. if ($totalRows_citas > 0) { // Show if recordset not empty
  3.    if(!empty($row_citas['piimagen'])){
  4. ?>
  5.         <img src="<?php echo $row_citas['piimagen']; ?>" alt="" name="imagen_citas" width="50" height="68" align="left" id="imagen_citas" />  
  6. <?php
  7.     } //cierre (empty($row_citas['piimagen']))
  8. } //cierre ($totalRows_citas > 0)
  9. ?>