Skip to content
Advertisement

array_push replacing value instead of adding new value in array

I’m trying to make a cart system, which is I need to sum all total product. I’m thinking about saving the total to an array, so I can use array_sum it later. But somehow the array $total_cart[] only have last total, for example is if I have three product in my cart, the total saved in the array is only from the third not all product that I have. And the total value is from calculation $price_discount * $cart_item['quantity'];

JavaScript

Advertisement

Answer

$total_cart = array(); is in a loop so it reset every time.

You should put $total_cart = array(); before foreach.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement