envexlabs Posted March 17, 2008 Share Posted March 17, 2008 Hey, I'm having a problem that i know the solution to but my brain just does not want to let me in on the secret. I'm creating a shopping cart for a client who wants real-time update prices etc, but that i have figured out. What i can't figure out how to do is get the total price from each product once it has been looped out. ie. Product 1 Price: $15 Product 2 Price: $25 Total (which is what i need): should be $40 Anyone know what my brain is thinking? Thanks. envex Link to comment https://forums.phpfreaks.com/topic/96546-adding-arrays/ Share on other sites More sharing options...
craygo Posted March 17, 2008 Share Posted March 17, 2008 well the price would be in value in the loop lets say $row['price'] At the end of the loop just total it up $total += $row['price']; Now you can echo out the total with $total Ray Link to comment https://forums.phpfreaks.com/topic/96546-adding-arrays/#findComment-494070 Share on other sites More sharing options...
envexlabs Posted March 17, 2008 Author Share Posted March 17, 2008 thanks, works like a charm! Link to comment https://forums.phpfreaks.com/topic/96546-adding-arrays/#findComment-494103 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.