Mysql
 sql >> Datenbank >  >> RDS >> Mysql

PHP sum echo result on the fly (schwierig)

Eine Möglichkeit wäre, eine Variable zu verwenden, um es unterwegs zusammenzufassen (hier verwende ich totalInvestment als Variable)

$totalInvestment = 0;

foreach($products as $product):
    $totalInventsment += product['mycost'] * $product['stock']; ?>

     ...
    <td><?php echo $product['name'] ?></td>
    <td><?php echo $product['stock'] ?></td>
    <td><?php echo $product['mycost'] ?></td>
    <td><?php echo $product['sellprice'] ?></td>
    ...

<?php endforeach;

Dann können Sie es einfach so ausgeben

<?php echo number_format($totalInventsment,',','.'); ?>

BEARBEITEN Wenn Sie es ganz oben haben möchten, können Sie dies oben in Ihrer Datei hinzufügen (dadurch wird die Website etwas langsamer geladen n(x)

$totalInvestment = 0;
foreach($products as $product){
        $totalInventsment += product['mycost'] * $product['stock'];
}

echo  number_format($totalInventsment,',','.');