Hi there,
is it possible, that such a construct is only
looped one time:
for ($i = 0; $i <= 10; $i++)
{
[while loop here]
}
When I replaced the while loop with a foreach loop, everyting worked fine. But with the above code, the while loop was executed only 1 time instead of 10 times.
thx