Konu
php sepete eklenen ürünlerin toplam fiyatını nasıl çekerim
21-01-2022, 22:53:06
#4
aslansoft
<?php
$total = 0;
foreach($urunler as $urun) {
$total = $total + $urun["price"];
}
print_r($total);
? >