<?php$p = 0;while(++$p || --$p){ print $p;}?>
As it is || operator the second expression is not evaluated and p is always incremented, in the first case to 1.
Previous Question Next Question
Your comments will be displayed only after manual approval.