for loop inside a for loop and continue the first loop after the second loop is finish in php code example
Example: php for next loop step
for ($i = 0; $i < 10; ++$i)
{
echo "I will loop 10 times";
}
for ($i = 0; $i < 10; ++$i)
{
echo "I will loop 10 times";
}