<?phpfor ($v = 0; $v < 5; $v++) { for ($u = $v; $u > 0; $v--) print $v;}?>
In the second loop u value is not being changed.
Previous Question Next Question
Your comments will be displayed only after manual approval.