리스트에서 SUM 여줘봅니다.

리스트에서 SUM 여줘봅니다.

QA

리스트에서 SUM 여줘봅니다.

답변 2

본문

리스트에서 여분필드의 값들을 총합계로 계산을 했습니다. 

그런데 잘 되는 필드가 있는 반면에 이상하게 계산을 하는 필드도 있습니다. 

왜이럴까요?ㅠㅠ

한번 검토해 주시면 정말로 감사하겠습니다. 

1221845453_1658542907.8364.jpg

 


<?php 
              $FareTotal=0;
              $ServiceTotal=0;
              $ChargeTotal=0;
              $TaxTotal=0;
              $SellTotal=0;
              $BalTotal=0;
              $NetTotal=0;
              $ProfitTotal=0;
              
              for($i=0; $i<count($list); $i++)
              
              {
              $FareTotal+=$list[$i]['wr_3'];
              $ServiceTotal+=$list[$i]['wr_4'];
              $ChargeTotal+=$list[$i]['wr_9'];
              $TaxTotal+=$list[$i]['wr_10'];
              $SellTotal+=$list[$i]['wr_11'];
              $BalTotal+=$list[$i]['wr_12'];
              $NetTotal+=$list[$i]['wr_13'];
              $ProfitTotal+=$list[$i]['wr_14'];
              }
            ?>
            <tr>
                <td colspan="7" style="text-align: right;"><strong>Total</strong></td>
                <td style="text-align: right;">$<?php echo number_format($FareTotal, 2)?></td>
                <td style="text-align: right;">$<?php echo number_format($ServiceTotal, 2)?></td>
                <td></td>
                <td></td>
                <td></td>
                <td></td>
                <td style="text-align: right;">$<?php echo number_format($ChargeTotal, 2)?></td>
                <td style="text-align: right;">$<?php echo number_format($TaxTotal, 2)?></td>
                <td style="text-align: right;">$<?php echo number_format($SellTotal ,2)?></td>
                <td style="text-align: right;">$<?php echo number_format($BalTotal, 2)?></td>
                <td style="text-align: right;">$<?php echo number_format($NetTotal, 2)?></td>
                <td style="text-align: right;">$<?php echo number_format($ProfitTotal, 2)?></td>
                <td></td>
                <td></td>
                <td></td>
                <td></td>
                <td></td>
            </tr>

이 질문에 댓글 쓰기 :

답변 2

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 10,649
© SIRSOFT
현재 페이지 제일 처음으로