crear una variable dentro del while y anda sumado, y cuando sale del while lo mostras
Código PHP:
while($row = mysql_fetch_array($req)){
echo $row[saldo_total] . "<br>";
$total = $total + $row[saldo_total];
}
echo "------------------------";
echo $total;