¿Ésto es PHP?
Código HTML:
Ver original<td width="5%" align="right" class="Estilo3"> </td> <td width="70%" align="left" class="Estilo3" scope="row"> '.$filas_descuentos['DESCRIPCION'].'
</td> <td width="28%" align="right" class="Estilo3"> '.number_format($filas_descuentos['VALOR'],2).'
</td>
¿Pues entonces porque lo tratas como PHP y no lo escapas con un "echo" (por ejemplo)?
Código PHP:
Ver original do {
$total_descuentos+= $filas_descuentos[VALOR];
echo '
<td width="5%" align="right" class="Estilo3"> </td>
<td width="70%" align="left" class="Estilo3" scope="row"> '.$filas_descuentos['DESCRIPCION'].'</td>
<td width="28%" align="right" class="Estilo3"> '.number_format($filas_descuentos['VALOR'],2).'</td> </tr>
';
}