I need sum up quantity items. I have a database query, I print values:
while ($row = mysqli_fetch_array($lista)) {
echo $row['przedmiot'].":".$row['ilosc'].'<br>';
}
then I get this result:
item1:1
item1:3
item2:1
item1:3
item2:5
I need to add these values, I would like to get this result:
item1:7
item2:6