<?phpfor ($k = 5; $k <= 9; print ++$k){ print ++$k;}?>
The value of k is incremented and printed twice before checking,this last loop it prints 10 and 11.
Previous Question Next Question
Your comments will be displayed only after manual approval.