. */ include_once __DIR__.'/../../core.php'; $dare = 0; $avere = 0; for ($i = 0; $i < sizeof($records); ++$i) { if ($records[$i]['totale'] >= 0) { $dare += $records[$i]['totale']; } else { $avere += $records[$i]['totale']; } } if (get('lev') == '2' || get('lev') == '3') { echo '
TOTALE ATTIVITÀ | '.moneyFormat(abs($dare)).' | PASSIVITÀ | '.moneyFormat(abs($avere)).' |
---|---|---|---|
UTILE | '.moneyFormat(abs($risultato['totale'])).' | PERDITA | '.moneyFormat(abs($risultato['totale'])).' | '; $pareggio_dare += abs($risultato['totale']); } echo ' |
TOTALE A PAREGGIO | '.moneyFormat(abs($pareggio_dare)).' | TOTALE A PAREGGIO | '.moneyFormat(abs($pareggio_avere)).' |