<?php
$total = 0;
foreach($urunler as $urun) {
$total = $total + $urun["price"];
}
print_r($total);
? >