Prefix and postfix have no difference in this situation.
PHP Code:
for( initial; condition; increment )
{
code
}
end of loop
1. initial
2. if condition false, exit loop without doing anything else (no increment or code executed)
3. execute code
4. increment
5. repeat back to #2
It's that simple.
__________________