Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. // VARIABLES I NEED
  2. $total_price = 0;
  3. $total_quantity = 0;
  4. $names = ""; <---- THIS IS WHAT I DON'T KNOW HOW TO DO
  5.  
  6. // HOW I LOOP THROUGH THE CURRENT SHOPPING CART
  7. foreach($_SESSION['shopping_cart'] as $id => $product){
  8. $product_id = $product['product_id'];
  9. $total_quantity += $product['quantity'];
  10. $total_price += $products[$product_id]['price'] * $product['quantity'];
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement