Quote:
Originally Posted by excaliber7388
Is it that you know the punch script does not use 'i', or is the i variable local to that block, and I was wrong in my thinking?
|
'i' should be declared at least once; something like this:
PHP Code:
for ( temp.i : foo )
{
echo( i );
}
is perfectly acceptable.
Like Zero said, try to debug it.