I have, for example, and array containing the following:
The question is - is there an easy way to add all the "_value1" to get a total and all the "_value2" to get another total without
David
Remember: You only know what you know
and - you don't know what you don't know!
Code:
row1_value1, row1_value2, row2_value1, row2_value2, ..., rown_value1, rown_value2
Code:
$total1 = $row1_value1 + $row2_value1 + ... + $rown_value1
David
Remember: You only know what you know
and - you don't know what you don't know!