In PHP, how does one count up to 10 and sum up the values? To count, is this right?
for($i=0;$i<10;$i++) {
echo $i;
}
How do I sum?
Should I store the above output in an array and then use array_sum, or is there any other straightforward way?


+? – Ignacio Vazquez-Abrams Nov 21 '11 at 5:03