karimali831 Posted July 22, 2010 Share Posted July 22, 2010 I'm want to count all values in a column: Is this right?: $points += COUNT($cup['score1']); Quote Link to comment https://forums.phpfreaks.com/topic/208590-is-this-correct/ Share on other sites More sharing options...
premiso Posted July 22, 2010 Share Posted July 22, 2010 In PHP count is a function that counts the items in an array. If you want to SUM the values look into array_sum. But if you just want to count how many items are in the array $cup['score1'], yes that would be the correct method. As far as if you are using it correctly, I do not know and cannot know without more code / an example print_r out of the array. Quote Link to comment https://forums.phpfreaks.com/topic/208590-is-this-correct/#findComment-1089820 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.