while ($i<5) {
if ($i>1) {
break;
}
$i++;
}
ok, let's suppose now $i is 2, what will happen, will it
-$i is 4(break stop the inner if)
-$i is 2(break stop the while loop)
-$i is 3(break while but does the rest of while)