Ver Mensaje Individual
  #8 (permalink)  
Antiguo 08/04/2010, 12:14
KaozC9
 
Fecha de Ingreso: abril-2010
Ubicación: Chile
Mensajes: 76
Antigüedad: 14 años, 7 meses
Puntos: 3
Respuesta: Reemplazar imagen dependiendo de valor MySQL

Código PHP:
    echo "<table class=\"art-article\" width=\"1324px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">";
    echo 
"<tbody>";
    echo 
"<tr>";
    echo 
"  <th>Correo</th>";
    echo 
"  <th>Centro</th>";
    echo 
"  <th>Planta</th>";
    echo 
"  <th>Mes</th>";
    echo 
"  <th>A&ntilde;o</th>";
    echo 
"  <th>fecha_solicitud</th>";
    echo 
"  <th>IP</th>";
    echo 
"  <th>Hostname</th>";
//    echo "  <th>message</th>";
    
echo "  <th>autorizacion</th>";
    echo 
"</tr>";

while(
$row mysql_fetch_row($result))
{
    echo 
"<tr>";
    
// $row is array... foreach( .. ) puts every element
    // of $row to $cell variable
    
foreach($row as $cell)
        echo 
"<td>$cell</td>";
        if (empty(
$cell['autorizacion']))
        {
                echo 
"<TD><img src='images/X.png'></TD>";
        }
        else
        {
                echo 
"<TD><img src='images/Checkmark.png'></TD>";
        }
    echo 
"</tr>\n";
}
    echo 
"</tbody></table>"



Código PHP:

                
if (empty($cell['autorizacion']))
        {
                echo 
"<TD><img src='images/X.png'></TD>";
        }
        else
        {
                echo 
"<TD><img src='images/Checkmark.png'></TD>";
        }