">
<?php$n = 0;do{ print "$n"; $n++;}while ($n != 5);?>
The check happens after the increment,thus it prints until n = 5.
Previous Question Next Question
Your comments will be displayed only after manual approval.