<?php$p = 0;while ($p++){ print $p;}print $p;?>
As it is a post increment, it checks and then does not enter the loop, thus prints only 1.
Previous Question Next Question
Your comments will be displayed only after manual approval.