Author Topic: continue;  (Read 398 times)

What does it do and how do I use it?

continue; just makes a for/while loop skip the current iteration.

for(%x=0;%x<10;%x++)
{
continue;
echo("cheetos");
}

will do nothing, but will loop through 10 times.

I could use this. Thanks for telling me.