<?php $a = -3; for (; $a <= 20; $a++){ if ($a == 0){ break; } $divide = 40/$a; echo "The result of dividing 40 by $a is $divide", "<BR>"; } ?>