<?php$n = 9;while (++$n){ while (--$n > 0) print $n;}?>
The loop never ends as n is always incremented and then decremented.
Previous Question Next Question
Your comments will be displayed only after manual approval.