Quote:
Originally Posted by DustyPorViva
On a slightly somewhat perhaps related note, I have often had problems where temp.vars lose their value in a for loop.
|
Are you declaring them inside the loop?
PHP Code:
temp.b = 0;
for (temp.item : array) {
echo(b);
b ++;
}
has always worked for me