The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
$i = 5;
$j = 10;
while($i > 0)
{
does something;
while($j > 0)
{ does something; $j--; }
$i--;
}
then the WHILE inside the first WHILE loop would run before finishing the original loop...?
$i = 5;
$j = 10;
while($i > 0)
{
does something;
while($j > 0)
{ does something; $j--; }
$i--;
}
then the WHILE inside the first WHILE loop would run before finishing the original loop...?