RESUELTO
Me quedó así....
Código PHP:
$result = mysql_query("select piezas.nomb_gpo,piezas.nomb_ind,IFNULL(valor, 'Sin valor')valor
from piezas join indicador on piezas.nomb_ind=indicador.nomb_ind
where nomb_pla='$_REQUEST[planta]' and nomb_cen='$_REQUEST[centro]'
and mes='{$mth}' and ano='{$yr}' order by id_ind asc limit 0,3;"
,$conexion) or die("Problemas en el select result: ".mysql_error());
echo "<tr><td rowspan='1' colspan='3' align='center' bgcolor='58ACFA'><b>Instalaciones y Equipos</b></td></tr>\n";
while ($row = mysql_fetch_array($result))
{
echo "<TR>";
echo "<TD>".$row['nomb_ind']."</TD>";
echo "<TD width=\"83\" align=center>".$row['valor']."</TD>";
echo "</tr>\n";
}
Saludos......
:borrac ho: