Código PHP:
while ($row=mysql_fetch_array($cSql)) {
echo "<tr>";
echo "<td class=Estilo1>".$row["ANO"]."</td>";
echo "<td class=Estilo1>".$mes."</td>";
echo "<td class=Estilo1 align='right'>".$row["CUANTOS"]."</td>";
echo "<td class=Estilo3 align='right'>".$row["DEBE"]."</td>";
echo "<td class=Estilo4 align='right'>".$row["HABER"]."</td>";
echo "<td class=Estilo4 align='right'>".$saldo."</td>";
echo "</tr>";
//Aqui estoy mostrando los totales mensuales
// y con esto es que estoy tratando de tomar los totales anuales pero no me sale
for ( $i =$ano ; $i==$ano ; $i ++){
echo "<tr>";
echo "<td class=Estilo2>".$row["ANO"]."</td>";
echo "<td class=Estilo2>Total</td>";
echo "<td class=Estilo1 align='right'>".$cuantos."</td>";
echo "<td class=Estilo3 align='right'>".$debe."</td>";
echo "<td class=Estilo4 align='right'>".$haber."</td>";
echo "<td class=Estilo4 align='right'>".$saldo."</td>";
}
echo "</tr>";
}
}
Año NºDocs Debe Haber Saldo
2009 Total 3 18.200,00 6.650,00 11.550,00
y no lo hace asi que porfa necesito su ayuda.....