<?php$num;for ($num = -4; $num < -6; ++$num){ print ++$num;}?>
The loop is not even entered as num is initially 0.
Previous Question Next Question
Your comments will be displayed only after manual approval.