echoCarlos Posted June 11, 2011 Share Posted June 11, 2011 Guys I have a small problem I have made a shop script I am trying to pull prices from a database and add them all together to see how much has been made in total example 3.00 4.00 6.50 10.50 100.99 I want to add them all together but the decimal places are confusing me, please help this is driving me mad. Quote Link to comment https://forums.phpfreaks.com/topic/239074-i-really-need-some-help-adding-prices/ Share on other sites More sharing options...
wildteen88 Posted June 11, 2011 Share Posted June 11, 2011 I want to add them all together but the decimal places are confusing me, please help this is driving me mad. What code are you using to add these numbers up? You can leave the decimal places in PHP will treat these numbers as floats. echo 'Total: '. (3.00 + 4.00 + 6.50 + 10.50 + 100.99); // output Total: 124.99 Quote Link to comment https://forums.phpfreaks.com/topic/239074-i-really-need-some-help-adding-prices/#findComment-1228350 Share on other sites More sharing options...
echoCarlos Posted June 11, 2011 Author Share Posted June 11, 2011 thank you I've managed to get it working Quote Link to comment https://forums.phpfreaks.com/topic/239074-i-really-need-some-help-adding-prices/#findComment-1228367 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.