Nested loops: do something until condition is met, usually do something else, repeat.
I prefer to just:
<div class='quotetop'>QUOTE </div>
Quote:
bool done = false;
while(done = false)
{
//do stuff, eventually set done to true
}[/b]
|
Just showing my method.
FlyingIsFun1217