Código PHP:
<?php
include_once("../conexion/conexion.php");
$ssql=" select
td.esPreventivo
from tblregistrotrabajosdet td
where td.estado=true ";
$res = mysql_query($ssql,$cnx);
$vTotalRegPag=mysql_num_rows($res);
if ($vTotalRegPag>0){
while ($regasig = mysql_fetch_array($res))
{
$vTipoSer="<img name='Tipo' src='img/correctivo.ico' class='tipoServImg' style='border:none' >";
if($regasig['esPreventivo']==true){
$vTipoSer="<img name='Tipo' src='img/preventivo.ico' class='tipoServImg' style='border:none' >";
}
$dvTablaCuerpo.="
<tr >
<td width='5%' >".$vTipoSer."</td>
</tr>";
}//siclo de la db
}
}//condicion total
echo $dvTablaCuerpo;
?>