<?php$n = 15;while (--$n > 0 && ++$n){ print $n;}?>
As it is && operator it is being incremented and decremented continuously.
Previous Question Next Question
Your comments will be displayed only after manual approval.