Código PHP:
Ver original$sql = "select * from ((ventas inner join prendas on ventas.codigo = prendas.codigo)inner join factura on ventas.idfactura = factura.idfactura) where ventas.fecha = '$fecha'";
while ($row = pg_fetch_row($result)) {
$fac = $row[8];
$tot_pesos= $row[30] + $tot_pesos;
$facts[]=$row[0];
?>
<tr>
<?php if ($row[9] == "CONTADO" || $row[9] == "SENA")
{
$conta = $conta + $row[31];
?>
<td class="ingresodatos"><?php echo cambiaf_a_normal($row[1]);?></td>
<td class="ingresodatos1"><?php echo $row[2];?></td>
<td class="ingresodatos"><?php echo $row[13];?></td>
<td class="ingresodatos1"><?php echo $row[5];?></td>
<td class="ingresodatos"><?php echo $row[4];?></td>
<td class="ingresodatos1"></td>
<td class="ingresodatos1"><?php echo $row[9];?></td>
</tr>
<?php
}
elseif ($row[9] == "TARJETA")
{
$tar = $tar+ $row[31];
?>
<td class="ingresodatos"><?php echo cambiaf_a_normal($row[1]);?></td>
<td class="ingresodatos1"><?php echo $row[2];?></td>
<td class="ingresodatos"><?php echo $row[13];?></td>
<td class="ingresodatos1"><?php echo $row[5];?></td>
<td class="ingresodatos"><?php echo $row[4];?></td>
<td class="ingresodatos1"></td>
<td class="ingresodatos1"><?php echo $row[9];?></td>
<?php
}
else
{
$otro = $otro + $row[30];
?>
<td class="ingresodatos"><?php echo cambiaf_a_normal($row[1]);?></td>
<td class="ingresodatos1"><?php echo $row[2];?></td>
<td class="ingresodatos"><?php echo $row[13];?></td>
<td class="ingresodatos1"><?php echo $row[5];?></td>
<td class="ingresodatos"><?php echo $row[4];?></td>
<td class="ingresodatos1"></td>
<td class="ingresodatos"><?php echo $row[9];?></td>
<?php
}
?>
<tr>
<td class="ingresodatos2"><?php echo "factura N: $fac";?></td>
<td class="ingresodatos2" colspan="4" align="right"><?php echo $row[30];?></td>
<td class="ingresodatos2" align="right" ><?php echo $row[30];?></td>
<td class="ingresodatos2" ></td>
</tr>
<?php
}
echo "Total de facturas: ".array_sum($facts); ?>
OJO: puse $row[0] pero cambiala por el campo que quieras sumar,