<?php$n = 4;while (++$n){ while ($n --> 0) print $n;}?>
The loop ends when n becomes 0.
Previous Question Next Question
Your comments will be displayed only after manual approval.