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']); 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. Link to comment https://forums.phpfreaks.com/topic/208590-is-this-correct/#findComment-1089820 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.